public inbox for iwd@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices
@ 2024-01-03 12:56 James Prestwood
  2024-01-03 12:58 ` James Prestwood
  2024-01-04 18:17 ` Denis Kenzior
  0 siblings, 2 replies; 8+ messages in thread
From: James Prestwood @ 2024-01-03 12:56 UTC (permalink / raw)
  To: iwd; +Cc: James Prestwood, Keith G

It was seen that this flag seems to cause issues when in AP mode on
brcmfmac devices (e.g. the raspberry Pi 3). When in AP mode an a
scan is issued clients will disconnect. After testing this behavior
was isolated to the use of the COLOCATED_6GHZ flag.

Besides working around the problem on this specific hardware the
patch itself makes sense as a non-6GHz capable device shouldn't use
this flag anyways.

As stated in the patch comment, this isn't really a catch all
workaround since the flag is still used for devices supporting 6GHz.
If additional hardware exhibits this behavior we may need additional
changes like a hardware blacklist or an explicit option to disable
the flag.

Reported-By: Keith G <ys3al35l@gmail.com>
---
 src/scan.c | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/src/scan.c b/src/scan.c
index f48ffdef..8c6fdc08 100644
--- a/src/scan.c
+++ b/src/scan.c
@@ -394,7 +394,20 @@ static struct l_genl_msg *scan_build_cmd(struct scan_context *sc,
 	if (params->ap_scan)
 		flags |= NL80211_SCAN_FLAG_AP;
 
-	flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
+	/*
+	 * TODO: This flag appears to cause some undesired behavior on brcmfmac
+	 *       when the device is in AP mode, or has a secondary AP interface
+	 *       running, causing clients to disconnect when a scan is issued.
+	 *
+	 *       Only using this flag for 6GHz capable devices will limit this
+	 *       behavior to only 6GHz devices and in reality makes sense
+	 *       because a non-6GHz device shouldn't use this flag anyways. If
+	 *       more issues still are seen related to this we may need an
+	 *       explicit workaround, either brcmfmac-specific or a disable
+	 *       option.
+	 */
+	if (wiphy_band_is_disabled(sc->wiphy, BAND_FREQ_6_GHZ) != -ENOTSUP)
+		flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
 
 	if (flags)
 		l_genl_msg_append_attr(msg, NL80211_ATTR_SCAN_FLAGS, 4, &flags);
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices
  2024-01-03 12:56 [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices James Prestwood
@ 2024-01-03 12:58 ` James Prestwood
  2024-01-03 14:57   ` KeithG
  2024-01-04 18:17 ` Denis Kenzior
  1 sibling, 1 reply; 8+ messages in thread
From: James Prestwood @ 2024-01-03 12:58 UTC (permalink / raw)
  To: iwd; +Cc: Keith G

Hi Keith,

On 1/3/24 4:56 AM, James Prestwood wrote:
> It was seen that this flag seems to cause issues when in AP mode on
> brcmfmac devices (e.g. the raspberry Pi 3). When in AP mode an a
> scan is issued clients will disconnect. After testing this behavior
> was isolated to the use of the COLOCATED_6GHZ flag.
>
> Besides working around the problem on this specific hardware the
> patch itself makes sense as a non-6GHz capable device shouldn't use
> this flag anyways.
>
> As stated in the patch comment, this isn't really a catch all
> workaround since the flag is still used for devices supporting 6GHz.
> If additional hardware exhibits this behavior we may need additional
> changes like a hardware blacklist or an explicit option to disable
> the flag.
>
> Reported-By: Keith G <ys3al35l@gmail.com>

Could you double check it still fixes the issue you were seeing on brcmfmac?

Thanks,

James

> ---
>   src/scan.c | 15 ++++++++++++++-
>   1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/src/scan.c b/src/scan.c
> index f48ffdef..8c6fdc08 100644
> --- a/src/scan.c
> +++ b/src/scan.c
> @@ -394,7 +394,20 @@ static struct l_genl_msg *scan_build_cmd(struct scan_context *sc,
>   	if (params->ap_scan)
>   		flags |= NL80211_SCAN_FLAG_AP;
>   
> -	flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
> +	/*
> +	 * TODO: This flag appears to cause some undesired behavior on brcmfmac
> +	 *       when the device is in AP mode, or has a secondary AP interface
> +	 *       running, causing clients to disconnect when a scan is issued.
> +	 *
> +	 *       Only using this flag for 6GHz capable devices will limit this
> +	 *       behavior to only 6GHz devices and in reality makes sense
> +	 *       because a non-6GHz device shouldn't use this flag anyways. If
> +	 *       more issues still are seen related to this we may need an
> +	 *       explicit workaround, either brcmfmac-specific or a disable
> +	 *       option.
> +	 */
> +	if (wiphy_band_is_disabled(sc->wiphy, BAND_FREQ_6_GHZ) != -ENOTSUP)
> +		flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
>   
>   	if (flags)
>   		l_genl_msg_append_attr(msg, NL80211_ATTR_SCAN_FLAGS, 4, &flags);

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices
  2024-01-03 12:58 ` James Prestwood
@ 2024-01-03 14:57   ` KeithG
  2024-01-03 15:01     ` James Prestwood
  0 siblings, 1 reply; 8+ messages in thread
From: KeithG @ 2024-01-03 14:57 UTC (permalink / raw)
  To: James Prestwood; +Cc: iwd

On Wed, Jan 3, 2024 at 6:58 AM James Prestwood <prestwoj@gmail.com> wrote:
>
> Hi Keith,
>
> On 1/3/24 4:56 AM, James Prestwood wrote:
> > It was seen that this flag seems to cause issues when in AP mode on
> > brcmfmac devices (e.g. the raspberry Pi 3). When in AP mode an a
> > scan is issued clients will disconnect. After testing this behavior
> > was isolated to the use of the COLOCATED_6GHZ flag.
> >
> > Besides working around the problem on this specific hardware the
> > patch itself makes sense as a non-6GHz capable device shouldn't use
> > this flag anyways.
> >
> > As stated in the patch comment, this isn't really a catch all
> > workaround since the flag is still used for devices supporting 6GHz.
> > If additional hardware exhibits this behavior we may need additional
> > changes like a hardware blacklist or an explicit option to disable
> > the flag.
> >
> > Reported-By: Keith G <ys3al35l@gmail.com>
>
> Could you double check it still fixes the issue you were seeing on brcmfmac?
>
> Thanks,
>
> James
>
> > ---
> >   src/scan.c | 15 ++++++++++++++-
> >   1 file changed, 14 insertions(+), 1 deletion(-)
> >
> > diff --git a/src/scan.c b/src/scan.c
> > index f48ffdef..8c6fdc08 100644
> > --- a/src/scan.c
> > +++ b/src/scan.c
> > @@ -394,7 +394,20 @@ static struct l_genl_msg *scan_build_cmd(struct scan_context *sc,
> >       if (params->ap_scan)
> >               flags |= NL80211_SCAN_FLAG_AP;
> >
> > -     flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
> > +     /*
> > +      * TODO: This flag appears to cause some undesired behavior on brcmfmac
> > +      *       when the device is in AP mode, or has a secondary AP interface
> > +      *       running, causing clients to disconnect when a scan is issued.
> > +      *
> > +      *       Only using this flag for 6GHz capable devices will limit this
> > +      *       behavior to only 6GHz devices and in reality makes sense
> > +      *       because a non-6GHz device shouldn't use this flag anyways. If
> > +      *       more issues still are seen related to this we may need an
> > +      *       explicit workaround, either brcmfmac-specific or a disable
> > +      *       option.
> > +      */
> > +     if (wiphy_band_is_disabled(sc->wiphy, BAND_FREQ_6_GHZ) != -ENOTSUP)
> > +             flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
> >
> >       if (flags)
> >               l_genl_msg_append_attr(msg, NL80211_ATTR_SCAN_FLAGS, 4, &flags);
James,

I will do this tonight. I was playing a lot with iwd that I had
patched with your suggestion last night. I was trying to resolve a
related problem and I did note that it was significantly more stable
with this patch, but I was still getting disconnected periodically. I
do not yet know if those disconnects were due to me or iwd and am
still investigating. I will continue this investigation with this new
patch applied. SHould this patch be against HEAD or can I safely patch
2.12?

Keith

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices
  2024-01-03 14:57   ` KeithG
@ 2024-01-03 15:01     ` James Prestwood
  2024-01-04  2:42       ` KeithG
  0 siblings, 1 reply; 8+ messages in thread
From: James Prestwood @ 2024-01-03 15:01 UTC (permalink / raw)
  To: KeithG; +Cc: iwd

Hi Keith,

On 1/3/24 6:57 AM, KeithG wrote:
> On Wed, Jan 3, 2024 at 6:58 AM James Prestwood <prestwoj@gmail.com> wrote:
>> Hi Keith,
>>
>> On 1/3/24 4:56 AM, James Prestwood wrote:
>>> It was seen that this flag seems to cause issues when in AP mode on
>>> brcmfmac devices (e.g. the raspberry Pi 3). When in AP mode an a
>>> scan is issued clients will disconnect. After testing this behavior
>>> was isolated to the use of the COLOCATED_6GHZ flag.
>>>
>>> Besides working around the problem on this specific hardware the
>>> patch itself makes sense as a non-6GHz capable device shouldn't use
>>> this flag anyways.
>>>
>>> As stated in the patch comment, this isn't really a catch all
>>> workaround since the flag is still used for devices supporting 6GHz.
>>> If additional hardware exhibits this behavior we may need additional
>>> changes like a hardware blacklist or an explicit option to disable
>>> the flag.
>>>
>>> Reported-By: Keith G <ys3al35l@gmail.com>
>> Could you double check it still fixes the issue you were seeing on brcmfmac?
>>
>> Thanks,
>>
>> James
>>
>>> ---
>>>    src/scan.c | 15 ++++++++++++++-
>>>    1 file changed, 14 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/src/scan.c b/src/scan.c
>>> index f48ffdef..8c6fdc08 100644
>>> --- a/src/scan.c
>>> +++ b/src/scan.c
>>> @@ -394,7 +394,20 @@ static struct l_genl_msg *scan_build_cmd(struct scan_context *sc,
>>>        if (params->ap_scan)
>>>                flags |= NL80211_SCAN_FLAG_AP;
>>>
>>> -     flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
>>> +     /*
>>> +      * TODO: This flag appears to cause some undesired behavior on brcmfmac
>>> +      *       when the device is in AP mode, or has a secondary AP interface
>>> +      *       running, causing clients to disconnect when a scan is issued.
>>> +      *
>>> +      *       Only using this flag for 6GHz capable devices will limit this
>>> +      *       behavior to only 6GHz devices and in reality makes sense
>>> +      *       because a non-6GHz device shouldn't use this flag anyways. If
>>> +      *       more issues still are seen related to this we may need an
>>> +      *       explicit workaround, either brcmfmac-specific or a disable
>>> +      *       option.
>>> +      */
>>> +     if (wiphy_band_is_disabled(sc->wiphy, BAND_FREQ_6_GHZ) != -ENOTSUP)
>>> +             flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
>>>
>>>        if (flags)
>>>                l_genl_msg_append_attr(msg, NL80211_ATTR_SCAN_FLAGS, 4, &flags);
> James,
>
> I will do this tonight. I was playing a lot with iwd that I had
> patched with your suggestion last night. I was trying to resolve a
> related problem and I did note that it was significantly more stable
> with this patch, but I was still getting disconnected periodically. I
> do not yet know if those disconnects were due to me or iwd and am
> still investigating. I will continue this investigation with this new
> patch applied. SHould this patch be against HEAD or can I safely patch
> 2.12?

Either works, there haven't been changes to that area in a while.

Thanks,

James

>
> Keith

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices
  2024-01-03 15:01     ` James Prestwood
@ 2024-01-04  2:42       ` KeithG
  2024-01-04 12:54         ` James Prestwood
  0 siblings, 1 reply; 8+ messages in thread
From: KeithG @ 2024-01-04  2:42 UTC (permalink / raw)
  To: James Prestwood; +Cc: iwd

[-- Attachment #1: Type: text/plain, Size: 5801 bytes --]

On Wed, Jan 3, 2024 at 9:01 AM James Prestwood <prestwoj@gmail.com> wrote:
>
> Hi Keith,
>
> On 1/3/24 6:57 AM, KeithG wrote:
> > On Wed, Jan 3, 2024 at 6:58 AM James Prestwood <prestwoj@gmail.com> wrote:
> >> Hi Keith,
> >>
> >> On 1/3/24 4:56 AM, James Prestwood wrote:
> >>> It was seen that this flag seems to cause issues when in AP mode on
> >>> brcmfmac devices (e.g. the raspberry Pi 3). When in AP mode an a
> >>> scan is issued clients will disconnect. After testing this behavior
> >>> was isolated to the use of the COLOCATED_6GHZ flag.
> >>>
> >>> Besides working around the problem on this specific hardware the
> >>> patch itself makes sense as a non-6GHz capable device shouldn't use
> >>> this flag anyways.
> >>>
> >>> As stated in the patch comment, this isn't really a catch all
> >>> workaround since the flag is still used for devices supporting 6GHz.
> >>> If additional hardware exhibits this behavior we may need additional
> >>> changes like a hardware blacklist or an explicit option to disable
> >>> the flag.
> >>>
> >>> Reported-By: Keith G <ys3al35l@gmail.com>
> >> Could you double check it still fixes the issue you were seeing on brcmfmac?
> >>
> >> Thanks,
> >>
> >> James
> >>
> >>> ---
> >>>    src/scan.c | 15 ++++++++++++++-
> >>>    1 file changed, 14 insertions(+), 1 deletion(-)
> >>>
> >>> diff --git a/src/scan.c b/src/scan.c
> >>> index f48ffdef..8c6fdc08 100644
> >>> --- a/src/scan.c
> >>> +++ b/src/scan.c
> >>> @@ -394,7 +394,20 @@ static struct l_genl_msg *scan_build_cmd(struct scan_context *sc,
> >>>        if (params->ap_scan)
> >>>                flags |= NL80211_SCAN_FLAG_AP;
> >>>
> >>> -     flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
> >>> +     /*
> >>> +      * TODO: This flag appears to cause some undesired behavior on brcmfmac
> >>> +      *       when the device is in AP mode, or has a secondary AP interface
> >>> +      *       running, causing clients to disconnect when a scan is issued.
> >>> +      *
> >>> +      *       Only using this flag for 6GHz capable devices will limit this
> >>> +      *       behavior to only 6GHz devices and in reality makes sense
> >>> +      *       because a non-6GHz device shouldn't use this flag anyways. If
> >>> +      *       more issues still are seen related to this we may need an
> >>> +      *       explicit workaround, either brcmfmac-specific or a disable
> >>> +      *       option.
> >>> +      */
> >>> +     if (wiphy_band_is_disabled(sc->wiphy, BAND_FREQ_6_GHZ) != -ENOTSUP)
> >>> +             flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
> >>>
> >>>        if (flags)
> >>>                l_genl_msg_append_attr(msg, NL80211_ATTR_SCAN_FLAGS, 4, &flags);
> > James,
> >
> > I will do this tonight. I was playing a lot with iwd that I had
> > patched with your suggestion last night. I was trying to resolve a
> > related problem and I did note that it was significantly more stable
> > with this patch, but I was still getting disconnected periodically. I
> > do not yet know if those disconnects were due to me or iwd and am
> > still investigating. I will continue this investigation with this new
> > patch applied. SHould this patch be against HEAD or can I safely patch
> > 2.12?
>
> Either works, there haven't been changes to that area in a while.
>
> Thanks,
>
> James
>
> >
> > Keith
James,

I patched and am playing with the Pi3b+. It is still flaky. I connect
via hostapd (hostapd_3.log) and let the journal run. When I get a
disconnect, this is what the journal shows:

Jan 03 20:04:02 runeaudio iwd[3610]: src/station.c:process_network()
No remaining BSSs for SSID: ATT4DwP79U -- Removing network
Jan 03 20:04:02 runeaudio iwd[3610]: src/station.c:process_network()
No remaining BSSs for SSID: TP-LINK_64C5 -- Removing network
Jan 03 20:04:02 runeaudio iwd[3610]: src/station.c:process_network()
No remaining BSSs for SSID: BingoBango -- Removing network
Jan 03 20:04:02 runeaudio iwd[3610]: src/station.c:process_network()
No remaining BSSs for SSID: Butchie -- Removing network
Jan 03 20:04:02 runeaudio iwd[3610]: src/station.c:process_network()
No remaining BSSs for SSID: NETGEAR45 -- Removing network
Jan 03 20:04:02 runeaudio iwd[3610]:
src/wiphy.c:wiphy_radio_work_insert() Inserting work item 8
Jan 03 20:04:02 runeaudio iwd[3610]:
src/wiphy.c:wiphy_radio_work_done() Work item 7 done
Jan 03 20:04:02 runeaudio iwd[3610]:
src/wiphy.c:wiphy_radio_work_next() Starting work item 8
Jan 03 20:04:02 runeaudio iwd[3610]: src/scan.c:scan_notify() Scan
notification Trigger Scan(33)
Jan 03 20:04:02 runeaudio iwd[3610]:
src/scan.c:scan_request_triggered() Passive scan triggered for wdev 1
Jan 03 20:04:02 runeaudio iwd[3610]:
src/station.c:station_dbus_scan_triggered() station_scan_triggered: 0
Jan 03 20:04:02 runeaudio iwd[3610]:
src/station.c:station_dbus_scan_triggered() Scan triggered for wlan0
subset 1

tried again with iwd (iwd_3.log) and got this.
Jan 03 20:25:06 runeaudio iwd[1338]:
src/wiphy.c:wiphy_radio_work_done() Work item 20 done
Jan 03 20:26:04 runeaudio mpdscribble[2996]: [last.fm] waiting 240
seconds before trying again
Jan 03 20:27:46 runeaudio iwd[1338]: src/scan.c:scan_periodic_timeout() 1
Jan 03 20:27:46 runeaudio iwd[1338]:
src/wiphy.c:wiphy_radio_work_insert() Inserting work item 21
Jan 03 20:27:46 runeaudio iwd[1338]:
src/wiphy.c:wiphy_radio_work_next() Starting work item 21
Jan 03 20:27:46 runeaudio iwd[1338]: src/scan.c:scan_notify() Scan
notification Trigger Scan(33)
Jan 03 20:27:46 runeaudio iwd[1338]:
src/scan.c:scan_request_triggered() Passive scan triggered for wdev 1
Jan 03 20:27:46 runeaudio iwd[1338]:
src/scan.c:scan_periodic_triggered() Periodic scan triggered for wdev
1

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: hostapd_3.log --]
[-- Type: text/x-log; charset="US-ASCII"; name="hostapd_3.log", Size: 2019143 bytes --]

Wireless monitor ver 2.12
Created interface nlmon
< RTNL: Get Link (0x12) len 4 [request,dump]                           0.910988
    Flags: 769 (0x301)
    Sequence number: 1704334354 (0x65961412)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                               0.911295
    Flags: 2 (0x002)
    Sequence number: 1704334354 (0x65961412)
    Port ID: 10725
> RTNL: New Link (0x10) len 1416 [multi]                               0.911295
    Flags: 2 (0x002)
    Sequence number: 1704334354 (0x65961412)
    Port ID: 10725
> RTNL: New Link (0x10) len 1420 [multi]                               0.911737
    Flags: 2 (0x002)
    Sequence number: 1704334354 (0x65961412)
    Port ID: 10725
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1416 [multi]                               0.911737
    Flags: 2 (0x002)
    Sequence number: 1704334354 (0x65961412)
    Port ID: 10725
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            a7 04 00 00 07 02 00 00 88 af 01 00 fe 5c 02 00  .............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            6f 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  o...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                               0.912372
    Flags: 2 (0x002)
    Sequence number: 1704334354 (0x65961412)
    Port ID: 10725
> RTNL: Done (0x03) len 4 [multi]                                      0.912628
    Flags: 2 (0x002)
    Sequence number: 1704334354 (0x65961412)
    Port ID: 10725
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                              0.912869
    Flags: 2 (0x002)
    Sequence number: 1704334355 (0x65961413)
    Port ID: 10725
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                              0.913033
    Flags: 2 (0x002)
    Sequence number: 1704334355 (0x65961413)
    Port ID: 10725
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                      0.913152
    Flags: 2 (0x002)
    Sequence number: 1704334355 (0x65961413)
    Port ID: 10725
    Status: 0
> RTNL: New Route (0x18) len 36 [multi,0x20]                           1.862804
    Flags: 34 (0x022)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10743
    RTM Family: AF_INET
    RTM Destination Len: 0
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: global
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Gateway: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                           1.862804
    Flags: 34 (0x022)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10743
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.0
        Preferred Source: 192.168.1.212
        Output Interface Index: 2
> RTNL: New Route (0x18) len 36 [multi,0x20]                           1.862804
    Flags: 34 (0x022)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10743
    RTM Family: AF_INET
    RTM Destination Len: 32
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                           1.862804
    Flags: 34 (0x022)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10743
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.5.0
        Preferred Source: 192.168.5.1
        Output Interface Index: 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                 1.862838
    Flags: 34 (0x022)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10743
    Status: 0
< RTNL: Get Link (0x12) len 24 [request]                               1.863216
    Flags: 1 (0x001)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                       1.863273
    Flags: 0 (0x000)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 2932094267
< RTNL: Get Link (0x12) len 24 [request]                               1.863621
    Flags: 1 (0x001)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 1044                                       1.863675
    Flags: 0 (0x000)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 3888284814
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            a7 04 00 00 07 02 00 00 88 af 01 00 fe 5c 02 00  .............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            6f 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  o...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: Get Link (0x12) len 24 [request,dump]                          1.880939
    Flags: 769 (0x301)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                               1.881202
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10746
> RTNL: New Link (0x10) len 1424 [multi]                               1.881202
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10746
> RTNL: New Link (0x10) len 1428 [multi]                               1.881687
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10746
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                               1.881687
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10746
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            a7 04 00 00 07 02 00 00 88 af 01 00 fe 5c 02 00  .............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            6f 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  o...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                               1.882459
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10746
> RTNL: Done (0x03) len 4 [multi]                                      1.882746
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10746
    Status: 0
< RTNL: New Link (0x10) len 16 [request,ack]                           1.896439
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                            1.896648
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 10751
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                               1.897086
    Flags: 1 (0x001)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                       1.897212
    Flags: 0 (0x000)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 2244040097
< RTNL: New Link (0x10) len 16 [request,ack]                           1.897732
    Flags: 5 (0x005)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                    1.897942
    Flags: 256 (0x100)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10751
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                           1.916787
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                            1.916832
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 10753
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                               1.917028
    Flags: 1 (0x001)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: New Link (0x10) len 1048                                       1.917078
    Flags: 0 (0x000)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 2400396471
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                           1.917316
    Flags: 5 (0x005)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                    1.917439
    Flags: 256 (0x100)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10753
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                           1.932500
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                            1.932556
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 10758
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 32 [request]                               1.932929
    Flags: 1 (0x001)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                       1.932991
    Flags: 0 (0x000)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 2793460898
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            a7 04 00 00 07 02 00 00 88 af 01 00 fe 5c 02 00  .............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            6f 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  o...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                           1.933233
    Flags: 5 (0x005)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                    1.933332
    Flags: 256 (0x100)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10758
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                           1.948006
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                            1.948056
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 10764
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                               1.948250
    Flags: 1 (0x001)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: New Link (0x10) len 988                                        1.948305
    Flags: 0 (0x000)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 2538362056
< RTNL: New Link (0x10) len 16 [request,ack]                           1.948484
    Flags: 5 (0x005)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                    1.948508
    Flags: 256 (0x100)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10764
    ACK: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                          1.968030
    Flags: 769 (0x301)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                               1.968142
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10769
> RTNL: New Link (0x10) len 1424 [multi]                               1.968142
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10769
> RTNL: New Link (0x10) len 1428 [multi]                               1.968205
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10769
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                               1.968205
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10769
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            a7 04 00 00 07 02 00 00 88 af 01 00 fe 5c 02 00  .............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            6f 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  o...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                               1.968327
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10769
> RTNL: Done (0x03) len 4 [multi]                                      1.968412
    Flags: 2 (0x002)
    Sequence number: 1704334356 (0x65961414)
    Port ID: 10769
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                              1.968559
    Flags: 2 (0x002)
    Sequence number: 1704334357 (0x65961415)
    Port ID: 10769
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                              1.968607
    Flags: 2 (0x002)
    Sequence number: 1704334357 (0x65961415)
    Port ID: 10769
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                      1.968636
    Flags: 2 (0x002)
    Sequence number: 1704334357 (0x65961415)
    Port ID: 10769
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                      2.046743
> Result: New Interface (0x07) len 136 [multi]                         2.048611
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2442 (0x0000098a)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2442 (0x0000098a)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Result: New Interface (0x07) len 124 [multi]                         2.048611
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2442 (0x0000098a)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2442 (0x0000098a)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Complete: Get Interface (0x05) len 4 [multi]                         2.049068
    Status: 0
< Request: Get Station (0x11) len 8 [ack,0x300]                        2.080132
    Interface Index: 4 (0x00000004)
> Complete: Get Station (0x11) len 4 [multi]                           2.081271
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                          2.094754
    Interface Index: 4 (0x00000004)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                        2.094803
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                           2.106049
    Interface Index: 4 (0x00000004)
> Result: Get Power Save (0x3e) len 8                                  2.106275
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                        2.106385
    Status: Success (0)
< Request: Trigger Scan (0x21) len 64 [ack]                            2.136281
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                    2.137544
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                    2.137582
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                          2.137614
    Status: Success (0)
< Request: Get Station (0x11) len 8 [ack,0x300]                        2.152383
    Interface Index: 3 (0x00000003)
> Complete: Get Station (0x11) len 4 [multi]                           2.153297
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                          2.167752
    Interface Index: 3 (0x00000003)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                        2.167793
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                           2.179312
    Interface Index: 3 (0x00000003)
> Result: Get Power Save (0x3e) len 8                                  2.179358
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                        2.179371
    Status: Success (0)
< Request: Get Protocol Features (0x5f) len 0 [ack]                    2.220450
> Result: Get Protocol Features (0x5f) len 8                           2.220498
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]                 2.220513
    Status: Success (0)
< Request: Get Wiphy (0x01) len 4 [ack,0x300]                          2.220614
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                             2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                             2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                             2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                             2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                             2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                            2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                              2.220863
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                             2.220925
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                    2.234485
> Result: Get Protocol Features (0x5f) len 8                           2.234516
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]                 2.234529
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                         2.234617
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                             2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                             2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                             2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                             2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                             2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                            2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                              2.234766
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                             2.234818
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                    2.246440
> Result: Get Protocol Features (0x5f) len 8                           2.246473
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]                 2.246487
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                         2.246569
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                             2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                             2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                             2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                             2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                             2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                            2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                              2.246708
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                             2.246776
    Status: 0
> Event: New Scan Results (0x22) len 84                                2.551839
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: New Scan Results (0x22) len 84                                2.551878
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                         2.551921
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         2.551936
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         2.551955
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         2.551966
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         2.551979
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         2.552003
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         2.552024
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                          2.552287
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                      2.552403
    Generation: 1166 (0x0000048e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 785790947299 (0x000000b6f4ca4fe3)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 428 [multi]                      2.552403
    Generation: 1166 (0x0000048e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 785790963080 (0x000000b6f4ca8d88)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 376 [multi]                      2.552403
    Generation: 1166 (0x0000048e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 148/255 available capacity 0 32µs/s units
                00 00 94 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 785790909747 (0x000000b6f4c9bd33)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 316 [multi]                      2.552403
    Generation: 1166 (0x0000048e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00010000 
                00 03 01 08                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  2 station(s) utilization 66/255 available capacity 31250 32µs/s units
                02 00 42 12 7a                                   ..B.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 00 0d 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 785790929747 (0x000000b6f4ca0b53)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 440 [multi]                      2.552403
    Generation: 1166 (0x0000048e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 785790936361 (0x000000b6f4ca2529)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 440 [multi]                      2.552403
    Generation: 1166 (0x0000048e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 90/255 available capacity 31250 32µs/s units
                02 00 5a 12 7a                                   ..Z.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 785790971413 (0x000000b6f4caae15)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 404 [multi]                      2.552403
    Generation: 1166 (0x0000048e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 785790978340 (0x000000b6f4cac924)
        Signal mBm: -7600
> Complete: Get Scan (0x20) len 4 [multi]                              2.552460
    Status: 0
< Request: Trigger Scan (0x21) len 248 [ack]                           2.554400
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                   2.555604
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                   2.555632
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                          2.555660
    Status: Success (0)
> Event: New Scan Results (0x22) len 268                               8.202429
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: New Scan Results (0x22) len 268                               8.202465
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                         8.202505
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.202521
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.202538
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.202549
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.202562
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.202583
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.202619
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                          8.202776
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441350687 (0x000000b84594a01f)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 428 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441358083 (0x000000b84594bd03)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 316 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                02 03 00 08                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  2 station(s) utilization 66/255 available capacity 31250 32µs/s units
                02 00 42 12 7a                                   ..B.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 00 0d 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441365427 (0x000000b84594d9b3)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 440 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 90/255 available capacity 31250 32µs/s units
                02 00 5a 12 7a                                   ..Z.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441331156 (0x000000b8459453d4)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 404 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441343031 (0x000000b845948237)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 388 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 61/255 available capacity 0 32µs/s units
                00 00 3d 00 00                                   ..=..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441249021 (0x000000b8459312fd)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 480 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441268708 (0x000000b845935fe4)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 372 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 59/255 available capacity 0 32µs/s units
                00 00 3b 00 00                                   ..;..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441279541 (0x000000b845938a35)
        Signal mBm: -5800
> Result: New Scan Results (0x22) len 392 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441290479 (0x000000b84593b4ef)
        Signal mBm: -6200
> Result: New Scan Results (0x22) len 396 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01000000 
                00 01 00 02                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441302354 (0x000000b84593e352)
        Signal mBm: -7200
> Result: New Scan Results (0x22) len 380 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 43/255 available capacity 0 32µs/s units
                00 00 2b 00 00                                   ..+..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441312771 (0x000000b845940c03)
        Signal mBm: -3900
> Result: New Scan Results (0x22) len 372 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID C0:89:AB:BC:03:B0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTBUimK8s
                41 54 54 42 55 69 6d 4b 38 73                    ATTBUimK8s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 26 dB link margin  0 dB
                1a 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 30/255 available capacity 0 32µs/s units
                04 00 1e 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                07 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441318916 (0x000000b845942404)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 336 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441325219 (0x000000b845943ca3)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 356 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441377198 (0x000000b8459507ae)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 396 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441383083 (0x000000b845951eab)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 384 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 17/255 available capacity 0 32µs/s units
                01 00 11 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441397719 (0x000000b8459557d7)
        Signal mBm: -6100
> Result: New Scan Results (0x22) len 384 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID 90:D0:92:3E:21:E4
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATT2aWqxEa
                41 54 54 32 61 57 71 78 45 61                    ATT2aWqxEa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 47/255 available capacity 0 32µs/s units
                04 00 2f 00 00                                   ../..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441408135 (0x000000b845958087)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 240 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441414437 (0x000000b845959925)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 372 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 39/255 available capacity 0 32µs/s units
                02 00 27 00 00                                   ..'..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441420167 (0x000000b84595af87)
        Signal mBm: -5100
> Result: New Scan Results (0x22) len 384 [multi]                      8.202917
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 47/255 available capacity 0 32µs/s units
                02 00 2f 00 00                                   ../..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441426052 (0x000000b84595c684)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 460 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 42/255 available capacity 0 32µs/s units
                02 00 2a 00 00                                   ..*..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441432458 (0x000000b84595df8a)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 460 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 84/255 available capacity 0 32µs/s units
                01 00 54 00 00                                   ..T..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441446625 (0x000000b8459616e1)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 452 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441454854 (0x000000b845963706)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 492 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                01 03 00 40                                      ...@            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 43/255 available capacity 65535 32µs/s units
                06 00 2b ff ff                                   ..+..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441463083 (0x000000b84596572b)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 440 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441474281 (0x000000b8459682e9)
        Signal mBm: -7200
> Result: New Scan Results (0x22) len 452 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441482042 (0x000000b84596a13a)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 488 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441494646 (0x000000b84596d276)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 452 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441511573 (0x000000b845971495)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 452 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441520375 (0x000000b8459736f7)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 524 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441536364 (0x000000b84597756c)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 556 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441548656 (0x000000b84597a570)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 428 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 43/255 available capacity 65535 32µs/s units
                00 00 2b ff ff                                   ..+..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441557302 (0x000000b84597c736)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 444 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 412
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 316
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 12/255 available capacity 65535 32µs/s units
                00 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 89 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Measurement Request
                Token: 192
                Request Mode: 6
                    Enable bit set
                    Request bit set
                Type: Clear Channel Assessment
                c0 06 01 24 00 00 05 2a b3 13 02 d7 00 1d        ...$...*......  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441566833 (0x000000b84597ec71)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 508 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 476
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 380
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 12/255 available capacity 65535 32µs/s units
                05 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 04 64 00 00 25 86 00 00  .P.......d..%...
                43 64 5e 00 63 53 2f 00                          Cd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Measurement Request
                Token: 192
                Request Mode: 6
                    Enable bit set
                    Request bit set
                Type: Clear Channel Assessment
                c0 06 01 24 00 00 05 2a b3 13 02 d7 00 1d        ...$...*......  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441578187 (0x000000b8459818cb)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 516 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441586364 (0x000000b8459838bc)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 556 [multi]                      8.203026
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441600479 (0x000000b845986fdf)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 412 [multi]                      8.203306
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441609177 (0x000000b8459891d9)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 484 [multi]                      8.203306
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 31/255 available capacity 0 32µs/s units
                02 00 1f 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441624333 (0x000000b84598cd0d)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 472 [multi]                      8.203306
    Generation: 1206 (0x000004b6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 31/255 available capacity 65535 32µs/s units
                02 00 1f ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 791441640062 (0x000000b845990a7e)
        Signal mBm: -6200
> Complete: Get Scan (0x20) len 4 [multi]                              8.203566
    Status: 0
< Request: Trigger Scan (0x21) len 128 [ack]                           8.205821
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                   8.207010
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                   8.207036
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                          8.207068
    Status: Success (0)
> Event: New Scan Results (0x22) len 148                              13.853715
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: New Scan Results (0x22) len 148                              13.853756
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                        13.853795
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        13.853810
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        13.853829
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        13.853840
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        13.853852
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        13.853874
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        13.853891
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                         13.854151
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092546264 (0x000000b9966b06d8)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 428 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092558451 (0x000000b9966b3673)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 316 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                00 03 00 08                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  2 station(s) utilization 111/255 available capacity 31250 32µs/s units
                02 00 6f 12 7a                                   ..o.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 08 0c 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092596784 (0x000000b9966bcc30)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 440 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 96/255 available capacity 31250 32µs/s units
                02 00 60 12 7a                                   ..`.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092533451 (0x000000b9966ad4cb)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 404 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092573711 (0x000000b9966b720f)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 388 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 87/255 available capacity 0 32µs/s units
                00 00 57 00 00                                   ..W..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092732253 (0x000000b9966ddd5d)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 480 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092475639 (0x000000b99669f2f7)
        Signal mBm: -6100
> Result: New Scan Results (0x22) len 372 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 53/255 available capacity 0 32µs/s units
                00 00 35 00 00                                   ..5..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092466264 (0x000000b99669ce58)
        Signal mBm: -5800
> Result: New Scan Results (0x22) len 392 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092444857 (0x000000b996697ab9)
        Signal mBm: -6200
> Result: New Scan Results (0x22) len 396 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092483086 (0x000000b9966a100e)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 380 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 32/255 available capacity 0 32µs/s units
                00 00 20 00 00                                   .. ..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092490586 (0x000000b9966a2d5a)
        Signal mBm: -3300
> Result: New Scan Results (0x22) len 372 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID C0:89:AB:BC:03:B0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTBUimK8s
                41 54 54 42 55 69 6d 4b 38 73                    ATTBUimK8s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 26 dB link margin  0 dB
                1a 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 42/255 available capacity 0 32µs/s units
                04 00 2a 00 00                                   ..*..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                07 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092503868 (0x000000b9966a613c)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 336 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092515795 (0x000000b9966a8fd3)
        Signal mBm: -7300
> Result: New Scan Results (0x22) len 356 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092603607 (0x000000b9966be6d7)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 384 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 27/255 available capacity 0 32µs/s units
                01 00 1b 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092627097 (0x000000b9966c4299)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 384 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID 90:D0:92:3E:21:E4
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATT2aWqxEa
                41 54 54 32 61 57 71 78 45 61                    ATT2aWqxEa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 90/255 available capacity 0 32µs/s units
                04 00 5a 00 00                                   ..Z..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092611264 (0x000000b9966c04c0)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 240 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092634128 (0x000000b9966c5e10)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 372 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 42/255 available capacity 0 32µs/s units
                02 00 2a 00 00                                   ..*..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092618972 (0x000000b9966c22dc)
        Signal mBm: -5100
> Result: New Scan Results (0x22) len 384 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 33/255 available capacity 0 32µs/s units
                02 00 21 00 00                                   ..!..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092647826 (0x000000b9966c9392)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 460 [multi]                     13.854279
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 52/255 available capacity 0 32µs/s units
                02 00 34 00 00                                   ..4..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092705482 (0x000000b9966d74ca)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 460 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 54/255 available capacity 0 32µs/s units
                01 00 36 00 00                                   ..6..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092656368 (0x000000b9966cb4f0)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 452 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092672201 (0x000000b9966cf2c9)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 492 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 30/255 available capacity 65535 32µs/s units
                06 00 1e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092782409 (0x000000b9966ea149)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 440 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092792097 (0x000000b9966ec721)
        Signal mBm: -7300
> Result: New Scan Results (0x22) len 452 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092801420 (0x000000b9966eeb8c)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 488 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092810586 (0x000000b9966f0f5a)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 452 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092739701 (0x000000b9966dfa75)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 524 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092753191 (0x000000b9966e2f27)
        Signal mBm: -8900
> Result: New Scan Results (0x22) len 556 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092763555 (0x000000b9966e57a3)
        Signal mBm: -8900
> Result: New Scan Results (0x22) len 428 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 30/255 available capacity 65535 32µs/s units
                00 00 1e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092772878 (0x000000b9966e7c0e)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 428 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 15/255 available capacity 65535 32µs/s units
                00 00 0f ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 89 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092854545 (0x000000b9966fbb11)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 492 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 15/255 available capacity 65535 32µs/s units
                05 00 0f ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 04 64 00 00 25 86 00 00  .P.......d..%...
                43 64 5e 00 63 53 2f 00                          Cd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092863764 (0x000000b9966fdf14)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 516 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092830951 (0x000000b9966f5ee7)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 556 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092844441 (0x000000b9966f9399)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 412 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092879805 (0x000000b996701dbd)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 484 [multi]                     13.854383
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 27/255 available capacity 0 32µs/s units
                02 00 1b 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092894389 (0x000000b9967056b5)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                     13.854673
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                01 02 00 08                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 25/255 available capacity 65535 32µs/s units
                02 00 19 ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092907409 (0x000000b996708991)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 384 [multi]                     13.854673
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID D0:FC:D0:70:13:54
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATT42CPL3s
                41 54 54 34 32 43 50 4c 33 73                    ATT42CPL3s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  7 station(s) utilization 18/255 available capacity 0 32µs/s units
                07 00 12 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 0a 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 07 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092525430 (0x000000b9966ab576)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 384 [multi]                     13.854673
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 112/255 available capacity 0 32µs/s units
                01 00 70 00 00                                   ..p..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092585014 (0x000000b9966b9e36)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 460 [multi]                     13.854673
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 55/255 available capacity 0 32µs/s units
                02 00 37 00 00                                   ..7..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092715639 (0x000000b9966d9c77)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 428 [multi]                     13.854673
    Generation: 1248 (0x000004e0)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID C0:89:AB:BC:03:B3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 24/255 available capacity 65535 32µs/s units
                00 00 18 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 797092819701 (0x000000b9966f32f5)
        Signal mBm: -9000
> Complete: Get Scan (0x20) len 4 [multi]                             13.854923
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                         22.609357
    Flags: 769 (0x301)
    Sequence number: 1704334377 (0x65961429)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                              22.609612
    Flags: 2 (0x002)
    Sequence number: 1704334377 (0x65961429)
    Port ID: 11074
> RTNL: New Link (0x10) len 1424 [multi]                              22.609612
    Flags: 2 (0x002)
    Sequence number: 1704334377 (0x65961429)
    Port ID: 11074
> RTNL: New Link (0x10) len 1428 [multi]                              22.610041
    Flags: 2 (0x002)
    Sequence number: 1704334377 (0x65961429)
    Port ID: 11074
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                              22.610041
    Flags: 2 (0x002)
    Sequence number: 1704334377 (0x65961429)
    Port ID: 11074
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            a7 04 00 00 07 02 00 00 88 af 01 00 fe 5c 02 00  .............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            6f 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  o...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                              22.610784
    Flags: 2 (0x002)
    Sequence number: 1704334377 (0x65961429)
    Port ID: 11074
> RTNL: Done (0x03) len 4 [multi]                                     22.611090
    Flags: 2 (0x002)
    Sequence number: 1704334377 (0x65961429)
    Port ID: 11074
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                             22.611387
    Flags: 2 (0x002)
    Sequence number: 1704334378 (0x6596142a)
    Port ID: 11074
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                             22.611538
    Flags: 2 (0x002)
    Sequence number: 1704334378 (0x6596142a)
    Port ID: 11074
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     22.611737
    Flags: 2 (0x002)
    Sequence number: 1704334378 (0x6596142a)
    Port ID: 11074
    Status: 0
> Event: New Station (0x13) len 188                                   22.829098
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 9 (0x00000009)
    Station Info: len 0
    Information Elements: len 149
        SSID: RuneAudioAP
            52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
        Supported rates:
            1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit/s
            02 04 0b 16 0c 12 18 24                          .......$        
        Extended supported rates:
            24.0 36.0 48.0 54.0 Mbit/s
            30 48 60 6c                                      0H`l            
        Tag 33: len 2
            00 16                                            ..              
        Tag 36: len 28
            01 01 02 01 03 01 04 01 05 01 06 01 07 01 08 01  ................
            09 01 0a 01 0b 01 0c 01 0d 01 0e 01              ............    
        RSN:
            Group Data Cipher Suite: len 4
                CCMP (00:0f:ac) suite  04
            Pairwise Cipher Suite: len 4
                CCMP (00:0f:ac) suite  04
            AKM Suite: len 4
                PSK; RSNA PSK (00:0f:ac) suite  02
            RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
            RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
            01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
            ac 02 00 00                                      ....            
        RM Enabled Capabilities: len 5
            Enabled: bit  4: Beacon Passive Measurement
            Enabled: bit  5: Beacon Active Measurement
            Enabled: bit  6: Beacon Table Measurement
            Operating Channel Max Measurement Duration: 0
            Non-Operating Channel Max Measurement Duration: 0
            Measurement Pilot Capability: 0
            70 00 00 00 00                                   p....           
        HT Capabilities: len 26
            HT Capabilities Info: bit  0: LDPC Coding Capability
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Dynamic
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bit  7: Tx STBC
            HT Capabilities Info: bits 8-9: One spatial stream
            HT Capabilities Info: bit 11: Maximum A-MSDU Length
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
            A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
            Supported MCS: MCS 0
            Supported MCS: MCS 1
            Supported MCS: MCS 2
            Supported MCS: MCS 3
            Supported MCS: MCS 4
            Supported MCS: MCS 5
            Supported MCS: MCS 6
            Supported MCS: MCS 7
            Supported MCS: MCS 8
            Supported MCS: MCS 9
            Supported MCS: MCS 10
            Supported MCS: MCS 11
            Supported MCS: MCS 12
            Supported MCS: MCS 13
            Supported MCS: MCS 14
            Supported MCS: MCS 15
            MCS set: Rx Highest data rate: 300 Mbit/s
            MCS Set: bit 96: Tx MCS set defined
            HT Extended Capabilities: PCO: supported
            HT Extended Capabilities: MCS Feedback: No feedback
            HT Extended Capabilities: +HTC: not supported
            HT Extended Capabilities: RD Responder: not supported
            e7 19 17 ff ff 00 00 00 00 00 00 00 00 2c 01 01  .............,..
            00 00 00 00 00 00 00 00 00 00                    ..........      
        Extended Capabilities: len 10
            Capability: bit  2: Extended channel switching
            Capability: bit 19: BSS transition
            Capability: bit 22: Multiple BSSID
            Capability: bit 23: Timing measurement
            Capability: bit 32: QoS Map
            Capability: bit 62: Opmode Notification
            Capability: bit 63: (null)
            04 00 c8 00 01 00 00 c0 01 21                    .........!      
        Vendor specific: len 6
            OUI: 00:17:35 type:08
            00 17 35 08 01 00                                ..5...          
        Vendor specific: len 7
            Microsoft (00:50:f2) type: 02
            00 50 f2 02 00 01 00                             .P.....         
> Event: New Station (0x13) len 188                                   22.829136
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 9 (0x00000009)
    Station Info: len 0
    Information Elements: len 149
        SSID: RuneAudioAP
            52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
        Supported rates:
            1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit/s
            02 04 0b 16 0c 12 18 24                          .......$        
        Extended supported rates:
            24.0 36.0 48.0 54.0 Mbit/s
            30 48 60 6c                                      0H`l            
        Tag 33: len 2
            00 16                                            ..              
        Tag 36: len 28
            01 01 02 01 03 01 04 01 05 01 06 01 07 01 08 01  ................
            09 01 0a 01 0b 01 0c 01 0d 01 0e 01              ............    
        RSN:
            Group Data Cipher Suite: len 4
                CCMP (00:0f:ac) suite  04
            Pairwise Cipher Suite: len 4
                CCMP (00:0f:ac) suite  04
            AKM Suite: len 4
                PSK; RSNA PSK (00:0f:ac) suite  02
            RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
            RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
            01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
            ac 02 00 00                                      ....            
        RM Enabled Capabilities: len 5
            Enabled: bit  4: Beacon Passive Measurement
            Enabled: bit  5: Beacon Active Measurement
            Enabled: bit  6: Beacon Table Measurement
            Operating Channel Max Measurement Duration: 0
            Non-Operating Channel Max Measurement Duration: 0
            Measurement Pilot Capability: 0
            70 00 00 00 00                                   p....           
        HT Capabilities: len 26
            HT Capabilities Info: bit  0: LDPC Coding Capability
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Dynamic
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bit  7: Tx STBC
            HT Capabilities Info: bits 8-9: One spatial stream
            HT Capabilities Info: bit 11: Maximum A-MSDU Length
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
            A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
            Supported MCS: MCS 0
            Supported MCS: MCS 1
            Supported MCS: MCS 2
            Supported MCS: MCS 3
            Supported MCS: MCS 4
            Supported MCS: MCS 5
            Supported MCS: MCS 6
            Supported MCS: MCS 7
            Supported MCS: MCS 8
            Supported MCS: MCS 9
            Supported MCS: MCS 10
            Supported MCS: MCS 11
            Supported MCS: MCS 12
            Supported MCS: MCS 13
            Supported MCS: MCS 14
            Supported MCS: MCS 15
            MCS set: Rx Highest data rate: 300 Mbit/s
            MCS Set: bit 96: Tx MCS set defined
            HT Extended Capabilities: PCO: supported
            HT Extended Capabilities: MCS Feedback: No feedback
            HT Extended Capabilities: +HTC: not supported
            HT Extended Capabilities: RD Responder: not supported
            e7 19 17 ff ff 00 00 00 00 00 00 00 00 2c 01 01  .............,..
            00 00 00 00 00 00 00 00 00 00                    ..........      
        Extended Capabilities: len 10
            Capability: bit  2: Extended channel switching
            Capability: bit 19: BSS transition
            Capability: bit 22: Multiple BSSID
            Capability: bit 23: Timing measurement
            Capability: bit 32: QoS Map
            Capability: bit 62: Opmode Notification
            Capability: bit 63: (null)
            04 00 c8 00 01 00 00 c0 01 21                    .........!      
        Vendor specific: len 6
            OUI: 00:17:35 type:08
            00 17 35 08 01 00                                ..5...          
        Vendor specific: len 7
            Microsoft (00:50:f2) type: 02
            00 50 f2 02 00 01 00                             .P.....         
< Request: Set Station (0x12) len 32 [ack]                            22.829619
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags 2: len 8
        Mask: 0x0000001c
            ShortPreamble
            WME
            MFP
        Set: 0x00000000
> Response: Set Station (0x12) len 4 [root]                           22.829674
    Status: Success (0)
< Request: Del Key (0x0c) len 32 [ack]                                22.829850
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Key: len 8
        Key Index: 0 (0x00)
> Response: Del Key (0x0c) len 4 [0x100]                              22.829876
    Status: Invalid argument (22)
< Request: Del Key (0x0c) len 32 [ack]                                22.830016
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Key: len 8
        Key Index: 0 (0x00)
> Response: Del Key (0x0c) len 4 [0x100]                              22.830039
    Status: Invalid argument (22)
< Request: Set Station (0x12) len 32 [ack]                            22.830095
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags 2: len 8
        Mask: 0x00000002
            Authorized
        Set: 0x00000000
> Response: Set Station (0x12) len 4 [root]                           22.830622
    Status: Success (0)
< PAE: len 99                                                         22.830964
    Interface Index: 4
    EAPoL: len 99
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 95
        Descriptor Type: 2
        Key MIC: false
        Secure: false
        Error: false
        Request: false
        Encrypted Key Data: false
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: false
        Key ACK: true
        Key Length: 16
        Key Replay Counter: 1
        Key NONCE
            85 6a ba fe f5 0d 71 5f 3a bd 16 9f f4 f1 2b 51  .j....q_:.....+Q
            d1 fe 4e d3 74 04 07 bd 46 3d 31 1f 0f 11 f2 d5  ..N.t...F=1.....
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key Data: len 0
        02 03 00 5f 02 00 8a 00 10 00 00 00 00 00 00 00  ..._............
        01 85 6a ba fe f5 0d 71 5f 3a bd 16 9f f4 f1 2b  ..j....q_:.....+
        51 d1 fe 4e d3 74 04 07 bd 46 3d 31 1f 0f 11 f2  Q..N.t...F=1....
        d5 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00                                         ...             
> PAE: len 121                                                        22.833930
    Interface Index: 4
    EAPoL: len 121
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 117
        Descriptor Type: 2
        Key MIC: true
        Secure: false
        Error: false
        Request: false
        Encrypted Key Data: false
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: false
        Key ACK: false
        Key Length: 0
        Key Replay Counter: 1
        Key NONCE
            6f 68 d1 9a e3 6f b4 a5 fc b3 e8 cc 94 75 78 a0  oh...o.......ux.
            be 79 a8 5f 40 7b 88 33 31 17 59 af 68 87 f5 40  .y._@{.31.Y.h..@
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            89 c9 c8 dc 37 b6 d1 fb 64 42 30 36 57 4d a2 d8  ....7...dB06WM..
        Key Data: len 22
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        02 03 00 75 02 01 0a 00 00 00 00 00 00 00 00 00  ...u............
        01 6f 68 d1 9a e3 6f b4 a5 fc b3 e8 cc 94 75 78  .oh...o.......ux
        a0 be 79 a8 5f 40 7b 88 33 31 17 59 af 68 87 f5  ..y._@{.31.Y.h..
        40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  @...............
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 89 c9 c8 dc 37 b6 d1 fb 64 42 30 36 57 4d a2  .....7...dB06WM.
        d8 00 16 30 14 01 00 00 0f ac 04 01 00 00 0f ac  ...0............
        04 01 00 00 0f ac 02 00 00                       .........       
< Request: Get Key (0x09) len 16 [ack]                                22.834362
    Interface Index: 4 (0x00000004)
    Key Index: 1 (0x01)
> Result: New Key (0x0b) len 44                                       22.834957
    Interface Index: 4 (0x00000004)
    Key Index: 1 (0x01)
    Key Cipher: BIP (00:0f:ac) suite  06
    Key: len 16
        Key Cipher: BIP (00:0f:ac) suite  06
        Key Index: 1 (0x01)
> Response: Get Key (0x09) len 4 [0x100]                              22.834977
    Status: Success (0)
< PAE: len 155                                                        22.835151
    Interface Index: 4
    EAPoL: len 155
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 151
        Descriptor Type: 2
        Key MIC: true
        Secure: true
        Error: false
        Request: false
        Encrypted Key Data: true
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: true
        Key ACK: true
        Key Length: 16
        Key Replay Counter: 2
        Key NONCE
            85 6a ba fe f5 0d 71 5f 3a bd 16 9f f4 f1 2b 51  .j....q_:.....+Q
            d1 fe 4e d3 74 04 07 bd 46 3d 31 1f 0f 11 f2 d5  ..N.t...F=1.....
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            a0 5c 88 5e dd 47 99 c5 df 89 e3 60 88 3e 02 1c  .\.^.G.....`.>..
        Key Data: len 56
            cc 81 f7 01 17 06 24 57 fe cd 4e ff fb 12 eb d6  ......$W..N.....
            a5 f2 92 d5 6d a4 a8 e3 41 46 4e 93 b3 0f 71 be  ....m...AFN...q.
            d9 4f f5 be 66 1a 02 de 97 d2 f6 db 54 3c a6 67  .O..f.......T<.g
            db ad 4b df 19 e5 c6 ab                          ..K.....        
        02 03 00 97 02 13 ca 00 10 00 00 00 00 00 00 00  ................
        02 85 6a ba fe f5 0d 71 5f 3a bd 16 9f f4 f1 2b  ..j....q_:.....+
        51 d1 fe 4e d3 74 04 07 bd 46 3d 31 1f 0f 11 f2  Q..N.t...F=1....
        d5 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 a0 5c 88 5e dd 47 99 c5 df 89 e3 60 88 3e 02  ..\.^.G.....`.>.
        1c 00 38 cc 81 f7 01 17 06 24 57 fe cd 4e ff fb  ..8......$W..N..
        12 eb d6 a5 f2 92 d5 6d a4 a8 e3 41 46 4e 93 b3  .......m...AFN..
        0f 71 be d9 4f f5 be 66 1a 02 de 97 d2 f6 db 54  .q..O..f.......T
        3c a6 67 db ad 4b df 19 e5 c6 ab                 <.g..K.....     
> PAE: len 99                                                         22.868549
    Interface Index: 4
    EAPoL: len 99
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 95
        Descriptor Type: 2
        Key MIC: true
        Secure: true
        Error: false
        Request: false
        Encrypted Key Data: false
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: false
        Key ACK: false
        Key Length: 0
        Key Replay Counter: 2
        Key NONCE
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            55 21 86 66 05 00 00 4f 50 f1 24 d5 10 95 b3 f1  U!.f...OP.$.....
        Key Data: len 0
        02 03 00 5f 02 03 0a 00 00 00 00 00 00 00 00 00  ..._............
        02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 55 21 86 66 05 00 00 4f 50 f1 24 d5 10 95 b3  .U!.f...OP.$....
        f1 00 00                                         ...             
< Request: New Key (0x0b) len 60 [ack]                                22.868965
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Key: len 36
        Key Data: len 16
            c3 e0 1d 9d 78 5d d0 5a 10 09 00 2d 2f ca f8 c5  ....x].Z...-/...
        Key Cipher: CCMP (00:0f:ac) suite  04
        Key Index: 0 (0x00)
> Response: New Key (0x0b) len 4 [0x100]                              22.869671
    Status: Success (0)
< Request: Set Station (0x12) len 40 [ack]                            22.869786
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags: len 4
        Authorized: true
    Station Flags 2: len 8
        Mask: 0x00000002
            Authorized
        Set: 0x00000002
            Authorized
> Response: Set Station (0x12) len 4 [root]                           22.870188
    Status: Success (0)
> RTNL: New Address (0x14) len 68 [multi]                             22.916263
    Flags: 2 (0x002)
    Sequence number: 14 (0x0000000e)
    Port ID: 1319
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: Done (0x03) len 4 [multi]                                     22.916286
    Flags: 2 (0x002)
    Sequence number: 14 (0x0000000e)
    Port ID: 1319
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                             51.830991
    Flags: 2 (0x002)
    Sequence number: 1704334405 (0x65961445)
    Port ID: 11379
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                             51.831047
    Flags: 2 (0x002)
    Sequence number: 1704334405 (0x65961445)
    Port ID: 11379
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     51.831073
    Flags: 2 (0x002)
    Sequence number: 1704334405 (0x65961445)
    Port ID: 11379
    Status: 0
< Request: Trigger Scan (0x21) len 352 [ack]                          57.551746
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
> Event: Trigger Scan (0x21) len 372                                  57.553045
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> Event: Trigger Scan (0x21) len 372                                  57.553076
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> Response: Trigger Scan (0x21) len 4 [0x100]                         57.553110
    Status: Success (0)
< Request: Get Reg (0x1f) len 0 [ack,0x300]                           60.895457
> Result: Get Reg (0x1f) len 492 [multi]                              60.895532
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                              60.895532
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                              60.895587
    Status: 0
> Event: New Scan Results (0x22) len 372                              63.190963
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> Event: New Scan Results (0x22) len 372                              63.191002
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> RTNL: New Link (0x10) len 48                                        63.191048
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        63.191064
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        63.191083
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        63.191097
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        63.191118
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        63.191136
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        63.191158
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                         63.191322
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429854850 (0x000000c513269c82)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 428 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429863756 (0x000000c51326bf4c)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 480 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429806985 (0x000000c51325e189)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 372 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 66/255 available capacity 0 32µs/s units
                00 00 42 00 00                                   ..B..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429828392 (0x000000c513263528)
        Signal mBm: -6000
> Result: New Scan Results (0x22) len 392 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429838183 (0x000000c513265b67)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 380 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 56/255 available capacity 0 32µs/s units
                00 00 38 00 00                                   ..8..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429847506 (0x000000c513267fd2)
        Signal mBm: -3400
> Result: New Scan Results (0x22) len 240 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                01 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429873912 (0x000000c51326e6f8)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 372 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 40/255 available capacity 0 32µs/s units
                02 00 28 00 00                                   ..(..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429882558 (0x000000c5132708be)
        Signal mBm: -5700
> Result: New Scan Results (0x22) len 460 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 65/255 available capacity 0 32µs/s units
                02 00 41 00 00                                   ..A..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429923704 (0x000000c51327a978)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 460 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 36/255 available capacity 0 32µs/s units
                01 00 24 00 00                                   ..$..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429891100 (0x000000c513272a1c)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 452 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429912037 (0x000000c513277be5)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 492 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 23/255 available capacity 65535 32µs/s units
                06 00 17 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430069173 (0x000000c51329e1b5)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 440 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429955527 (0x000000c5132825c7)
        Signal mBm: -7200
> Result: New Scan Results (0x22) len 452 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429973027 (0x000000c513286a23)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 488 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429986933 (0x000000c51328a075)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 452 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430012558 (0x000000c51329048e)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 524 [multi]                     63.191499
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00100000 
                01 02 00 04                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430026777 (0x000000c513293c19)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 556 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430036777 (0x000000c513296329)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 428 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 23/255 available capacity 65535 32µs/s units
                00 00 17 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430050787 (0x000000c5132999e3)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 428 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 13/255 available capacity 65535 32µs/s units
                00 00 0d ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 89 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430099173 (0x000000c5132a56e5)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 492 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 13/255 available capacity 65535 32µs/s units
                05 00 0d ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 04 64 00 00 25 86 00 00  .P.......d..%...
                43 64 5e 00 63 53 2f 00                          Cd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430115996 (0x000000c5132a989c)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 516 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430125527 (0x000000c5132abdd7)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 556 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430135110 (0x000000c5132ae346)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 412 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430144850 (0x000000c5132b0952)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 484 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 6/255 available capacity 0 32µs/s units
                02 00 06 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430157714 (0x000000c5132b3b92)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 472 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 20/255 available capacity 65535 32µs/s units
                02 00 14 ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430170371 (0x000000c5132b6d03)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 460 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 50/255 available capacity 0 32µs/s units
                02 00 32 00 00                                   ..2..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429938079 (0x000000c51327e19f)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 452 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846429996517 (0x000000c51328c5e5)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 428 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID EC:A9:40:DD:8F:E3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 31/255 available capacity 65535 32µs/s units
                00 00 1f ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 86 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430060162 (0x000000c51329be82)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 488 [multi]                     63.191592
    Generation: 1279 (0x000004ff)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 59/255 available capacity 0 32µs/s units
                04 00 3b 00 00                                   ..;..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 846430079485 (0x000000c5132a09fd)
        Signal mBm: -7500
> Complete: Get Scan (0x20) len 4 [multi]                             63.192520
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        182.675165
    Flags: 769 (0x301)
    Sequence number: 1704334537 (0x659614c9)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             182.675285
    Flags: 2 (0x002)
    Sequence number: 1704334537 (0x659614c9)
    Port ID: 12784
> RTNL: New Link (0x10) len 1424 [multi]                             182.675285
    Flags: 2 (0x002)
    Sequence number: 1704334537 (0x659614c9)
    Port ID: 12784
> RTNL: New Link (0x10) len 1428 [multi]                             182.675348
    Flags: 2 (0x002)
    Sequence number: 1704334537 (0x659614c9)
    Port ID: 12784
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             182.675348
    Flags: 2 (0x002)
    Sequence number: 1704334537 (0x659614c9)
    Port ID: 12784
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            a4 05 00 00 8d 02 00 00 0c 0c 02 00 fe e4 02 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            a5 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             182.675468
    Flags: 2 (0x002)
    Sequence number: 1704334537 (0x659614c9)
    Port ID: 12784
> RTNL: Done (0x03) len 4 [multi]                                    182.675543
    Flags: 2 (0x002)
    Sequence number: 1704334537 (0x659614c9)
    Port ID: 12784
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                            182.675695
    Flags: 2 (0x002)
    Sequence number: 1704334538 (0x659614ca)
    Port ID: 12784
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            182.675746
    Flags: 2 (0x002)
    Sequence number: 1704334538 (0x659614ca)
    Port ID: 12784
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    182.675774
    Flags: 2 (0x002)
    Sequence number: 1704334538 (0x659614ca)
    Port ID: 12784
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                    182.710862
> Result: New Interface (0x07) len 136 [multi]                       182.712523
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2442 (0x0000098a)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2442 (0x0000098a)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Result: New Interface (0x07) len 124 [multi]                       182.712523
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2442 (0x0000098a)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2442 (0x0000098a)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Complete: Get Interface (0x05) len 4 [multi]                       182.712586
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                          182.730337
    Interface Index: 4 (0x00000004)
> Result: New Interface (0x07) len 136                               182.731264
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2442 (0x0000098a)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2442 (0x0000098a)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Response: Get Interface (0x05) len 4 [0x100]                       182.731290
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          182.745293
    Interface Index: 3 (0x00000003)
> Result: New Interface (0x07) len 124                               182.746175
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2442 (0x0000098a)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2442 (0x0000098a)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Response: Get Interface (0x05) len 4 [0x100]                       182.746200
    Status: Success (0)
< Request: Trigger Scan (0x21) len 64 [ack]                          182.768777
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                  182.770017
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                  182.770184
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        182.770440
    Status: Success (0)
> Event: New Scan Results (0x22) len 84                              183.186126
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: New Scan Results (0x22) len 84                              183.186157
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       183.186195
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       183.186218
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       183.186235
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       183.186255
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       183.186271
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       183.186293
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       183.186312
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        183.186804
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    183.186877
    Generation: 1284 (0x00000504)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 966425283687 (0x000000e1036f8c67)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 428 [multi]                    183.186877
    Generation: 1284 (0x00000504)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 966425295667 (0x000000e1036fbb33)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 440 [multi]                    183.186877
    Generation: 1284 (0x00000504)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 966425260458 (0x000000e1036f31aa)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 372 [multi]                    183.186877
    Generation: 1284 (0x00000504)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 966425277333 (0x000000e1036f7395)
        Signal mBm: -7800
> Complete: Get Scan (0x20) len 4 [multi]                            183.186925
    Status: 0
< Request: Trigger Scan (0x21) len 248 [ack]                         183.188131
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                 183.189274
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                 183.189301
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        183.189332
    Status: Success (0)
> Event: New Scan Results (0x22) len 268                             188.827227
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: New Scan Results (0x22) len 268                             188.827267
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       188.827307
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       188.827323
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       188.827345
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       188.827358
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       188.827370
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       188.827393
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       188.827412
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        188.827479
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066203117 (0x000000e253a925ed)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 428 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066213846 (0x000000e253a94fd6)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 440 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5640 (0x00001608)
        Timestamp: 966425260458 (0x000000e1036f31aa)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 372 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5640 (0x00001608)
        Timestamp: 966425277333 (0x000000e1036f7395)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 480 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066164627 (0x000000e253a88f93)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 392 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066180825 (0x000000e253a8ced9)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 372 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 85/255 available capacity 0 32µs/s units
                00 00 55 00 00                                   ..U..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066187700 (0x000000e253a8e9b4)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 380 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 42/255 available capacity 0 32µs/s units
                00 00 2a 00 00                                   ..*..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066194106 (0x000000e253a902ba)
        Signal mBm: -3300
> Result: New Scan Results (0x22) len 384 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 27/255 available capacity 0 32µs/s units
                01 00 1b 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066225825 (0x000000e253a97ea1)
        Signal mBm: -6200
> Result: New Scan Results (0x22) len 372 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 34/255 available capacity 0 32µs/s units
                02 00 22 00 00                                   .."..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066232179 (0x000000e253a99773)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 460 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 115/255 available capacity 0 32µs/s units
                01 00 73 00 00                                   ..s..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066240044 (0x000000e253a9b62c)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 460 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 80/255 available capacity 0 32µs/s units
                02 00 50 00 00                                   ..P..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066258638 (0x000000e253a9fece)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 428 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 57/255 available capacity 65535 32µs/s units
                00 00 39 ff ff                                   ..9..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066276346 (0x000000e253aa43fa)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 492 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 10000010 
                01 03 00 41                                      ...A            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 57/255 available capacity 65535 32µs/s units
                06 00 39 ff ff                                   ..9..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066292544 (0x000000e253aa8340)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 440 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066300461 (0x000000e253aaa22d)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 452 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066313690 (0x000000e253aad5da)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 488 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066321554 (0x000000e253aaf492)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 452 [multi]                    188.827576
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066330148 (0x000000e253ab1624)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 488 [multi]                    188.827697
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 63/255 available capacity 0 32µs/s units
                04 00 3f 00 00                                   ..?..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066344054 (0x000000e253ab4c76)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 516 [multi]                    188.827697
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066355982 (0x000000e253ab7b0e)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 556 [multi]                    188.827697
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066371398 (0x000000e253abb746)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 428 [multi]                    188.827697
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 12/255 available capacity 65535 32µs/s units
                00 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8b 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066380148 (0x000000e253abd974)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 492 [multi]                    188.827697
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 12/255 available capacity 65535 32µs/s units
                05 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                43 64 5e 00 63 53 2f 00                          Cd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066388273 (0x000000e253abf931)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 412 [multi]                    188.827697
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01111000 
                00 01 00 1e                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066401138 (0x000000e253ac2b72)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    188.827697
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 6/255 available capacity 0 32µs/s units
                02 00 06 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066425148 (0x000000e253ac893c)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 472 [multi]                    188.827697
    Generation: 1308 (0x0000051c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 32/255 available capacity 65535 32µs/s units
                02 00 20 ff ff                                   .. ..           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 972066441867 (0x000000e253acca8b)
        Signal mBm: -6800
> Complete: Get Scan (0x20) len 4 [multi]                            188.827963
    Status: 0
< Request: Trigger Scan (0x21) len 128 [ack]                         188.829297
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                 188.837155
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                 188.837181
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        188.837207
    Status: Success (0)
< Request: Get Reg (0x1f) len 0 [ack,0x300]                          192.835269
> Result: Get Reg (0x1f) len 492 [multi]                             192.835329
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                             192.835329
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                             192.835391
    Status: 0
> Event: New Scan Results (0x22) len 148                             194.472390
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: New Scan Results (0x22) len 148                             194.472433
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       194.472473
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       194.472488
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       194.472506
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       194.472519
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       194.472533
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       194.472555
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       194.472573
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        194.472631
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711268745 (0x000000e3a4220389)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 428 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711276245 (0x000000e3a42220d5)
        Signal mBm: -6000
> Result: New Scan Results (0x22) len 440 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711299526 (0x000000e3a4227bc6)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 480 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711230359 (0x000000e3a4216d97)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 392 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711251713 (0x000000e3a421c101)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 380 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 37/255 available capacity 0 32µs/s units
                00 00 25 00 00                                   ..%..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711259786 (0x000000e3a421e08a)
        Signal mBm: -3400
> Result: New Scan Results (0x22) len 384 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 22/255 available capacity 0 32µs/s units
                01 00 16 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711284370 (0x000000e3a4224092)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 372 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 33/255 available capacity 0 32µs/s units
                02 00 21 00 00                                   ..!..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711292130 (0x000000e3a4225ee2)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 460 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 124/255 available capacity 0 32µs/s units
                01 00 7c 00 00                                   ..|..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711311870 (0x000000e3a422abfe)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 460 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 112/255 available capacity 0 32µs/s units
                02 00 70 00 00                                   ..p..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711342286 (0x000000e3a42322ce)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 428 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 55/255 available capacity 65535 32µs/s units
                00 00 37 ff ff                                   ..7..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711392911 (0x000000e3a423e88f)
        Signal mBm: -5100
> Result: New Scan Results (0x22) len 496 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 464
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 366
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 5
                AID     1 -   24 00001100 00000001 01000000 
                02 03 0a 30 80 02                                ...0..          
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 55/255 available capacity 65535 32µs/s units
                06 00 37 ff ff                                   ..7..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711401870 (0x000000e3a4240b8e)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 440 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711425099 (0x000000e3a424664b)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 452 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711438953 (0x000000e3a4249c69)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 488 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711452859 (0x000000e3a424d2bb)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 452 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711383380 (0x000000e3a423c354)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 488 [multi]                    194.472791
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 58/255 available capacity 0 32µs/s units
                04 00 3a 00 00                                   ..:..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711487911 (0x000000e3a4255ba7)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 516 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711535776 (0x000000e3a42616a0)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 556 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711545880 (0x000000e3a4263e18)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 428 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 11/255 available capacity 65535 32µs/s units
                00 00 0b ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711508640 (0x000000e3a425aca0)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 492 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 10000000 
                01 03 00 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 11/255 available capacity 65535 32µs/s units
                05 00 0b ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 86 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711525984 (0x000000e3a425f060)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 412 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711559630 (0x000000e3a42673ce)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 11/255 available capacity 0 32µs/s units
                02 00 0b 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711576766 (0x000000e3a426b6be)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 472 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                01 02 00 08                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 29/255 available capacity 65535 32µs/s units
                02 00 1d ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711605568 (0x000000e3a4272740)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 452 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711329057 (0x000000e3a422ef21)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 460 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 103/255 available capacity 0 32µs/s units
                02 00 67 00 00                                   ..g..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711352338 (0x000000e3a4234a12)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 452 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711369370 (0x000000e3a4238c9a)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 492 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID E6:A9:40:DD:8F:E3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT5fbNia2
                41 54 54 35 66 62 4e 69 61 32                    ATT5fbNia2      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 10000000 
                00 03 01 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  7 station(s) utilization 52/255 available capacity 65535 32µs/s units
                07 00 34 ff ff                                   ..4..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 82 86 4f 3d  ...7*.. .X....O=
                ae 46 8c cb a3 0f 71 29 27 82 89 c2 00 01 01 01  .F....q)'.......
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    82 86 4f 3d ae 46 8c cb a3 0f 71 29 27 82 89 c2  ..O=.F....q)'...
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711416453 (0x000000e3a4244485)
        Signal mBm: -9000
> Result: New Scan Results (0x22) len 464 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 432
        BSSID 10:C4:CA:A6:79:F8
        TSF: 0 (0x0000000000000000)
        IEs: len 336
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 116/255 available capacity 0 32µs/s units
                02 00 74 00 00                                   ..t..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 48
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                30 07 02 00 00 00 00 00 00 00 00 00 00 00 00 00  0...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 33 33 33                                      .333            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 34 fc ff                                ...4..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5240 (0x00001478)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711466922 (0x000000e3a42509aa)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 488 [multi]                    194.472941
    Generation: 1339 (0x0000053b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:F4:42:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 360
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 16/255 available capacity 0 32µs/s units
                02 00 10 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 12 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 43 76 cd ed 86 53 81 44 6c 4e bf db 87 fb ab  .Cv...S.DlN.....
                55 00 01 01 01 03 00 7f c5                       U........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    43 76 cd ed 86 53 81 44 6c 4e bf db 87 fb ab 55  Cv...S.DlN.....U
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 977711589838 (0x000000e3a426e9ce)
        Signal mBm: -8800
> Complete: Get Scan (0x20) len 4 [multi]                            194.473192
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        194.499774
    Flags: 769 (0x301)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             194.499897
    Flags: 2 (0x002)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 12901
> RTNL: New Link (0x10) len 1424 [multi]                             194.499897
    Flags: 2 (0x002)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 12901
> RTNL: New Link (0x10) len 1428 [multi]                             194.499964
    Flags: 2 (0x002)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 12901
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             194.499964
    Flags: 2 (0x002)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 12901
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            bd 05 00 00 a9 02 00 00 44 11 02 00 32 38 03 00  ........D...28..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            a5 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             194.500087
    Flags: 2 (0x002)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 12901
> RTNL: Done (0x03) len 4 [multi]                                    194.500167
    Flags: 2 (0x002)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 12901
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                            194.500319
    Flags: 2 (0x002)
    Sequence number: 1704334550 (0x659614d6)
    Port ID: 12901
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            194.500375
    Flags: 2 (0x002)
    Sequence number: 1704334550 (0x659614d6)
    Port ID: 12901
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    194.500406
    Flags: 2 (0x002)
    Sequence number: 1704334550 (0x659614d6)
    Port ID: 12901
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                          194.514206
    Interface Index: 2 (0x00000002)
> Response: Get Interface (0x05) len 4                               194.514243
    Status: No such device (19)
> RTNL: New Address (0x14) len 68 [multi]                            194.607785
    Flags: 2 (0x002)
    Sequence number: 1704334548 (0x659614d4)
    Port ID: 12911
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            194.607838
    Flags: 2 (0x002)
    Sequence number: 1704334548 (0x659614d4)
    Port ID: 12911
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    194.607872
    Flags: 2 (0x002)
    Sequence number: 1704334548 (0x659614d4)
    Port ID: 12911
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                            194.884112
    Flags: 2 (0x002)
    Sequence number: 1704334548 (0x659614d4)
    Port ID: 12915
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            194.884501
    Flags: 2 (0x002)
    Sequence number: 1704334548 (0x659614d4)
    Port ID: 12915
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    194.884672
    Flags: 2 (0x002)
    Sequence number: 1704334548 (0x659614d4)
    Port ID: 12915
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                            195.142454
    Flags: 2 (0x002)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 12950
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            195.142515
    Flags: 2 (0x002)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 12950
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    195.142547
    Flags: 2 (0x002)
    Sequence number: 1704334549 (0x659614d5)
    Port ID: 12950
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                            196.367505
    Flags: 2 (0x002)
    Sequence number: 1704334550 (0x659614d6)
    Port ID: 12959
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            196.367681
    Flags: 2 (0x002)
    Sequence number: 1704334550 (0x659614d6)
    Port ID: 12959
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    196.367805
    Flags: 2 (0x002)
    Sequence number: 1704334550 (0x659614d6)
    Port ID: 12959
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                            199.572563
    Flags: 2 (0x002)
    Sequence number: 1704334553 (0x659614d9)
    Port ID: 13003
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            199.572617
    Flags: 2 (0x002)
    Sequence number: 1704334553 (0x659614d9)
    Port ID: 13003
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    199.572646
    Flags: 2 (0x002)
    Sequence number: 1704334553 (0x659614d9)
    Port ID: 13003
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                            200.614072
    Flags: 2 (0x002)
    Sequence number: 1704334554 (0x659614da)
    Port ID: 13005
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            200.614127
    Flags: 2 (0x002)
    Sequence number: 1704334554 (0x659614da)
    Port ID: 13005
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    200.614154
    Flags: 2 (0x002)
    Sequence number: 1704334554 (0x659614da)
    Port ID: 13005
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                            201.304837
    Flags: 2 (0x002)
    Sequence number: 1704334555 (0x659614db)
    Port ID: 13010
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            201.305099
    Flags: 2 (0x002)
    Sequence number: 1704334555 (0x659614db)
    Port ID: 13010
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    201.305279
    Flags: 2 (0x002)
    Sequence number: 1704334555 (0x659614db)
    Port ID: 13010
    Status: 0
> RTNL: New Address (0x14) len 68 [multi]                            218.068073
    Flags: 2 (0x002)
    Sequence number: 1704334572 (0x659614ec)
    Port ID: 13206
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Broadcast Address: 192.168.5.255
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9685, cstamp: 9685
> RTNL: New Address (0x14) len 64 [multi]                            218.068251
    Flags: 2 (0x002)
    Sequence number: 1704334572 (0x659614ec)
    Port ID: 13206
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 19696, cstamp: 19696
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    218.068519
    Flags: 2 (0x002)
    Sequence number: 1704334572 (0x659614ec)
    Port ID: 13206
    Status: 0
> Event: Del Station (0x14) len 32                                   220.628007
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 0 (0x00000000)
    Station Info: len 0
> Event: Del Station (0x14) len 32                                   220.628048
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 0 (0x00000000)
    Station Info: len 0
> Event: Del Station (0x14) len 32                                   220.628083
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 0 (0x00000000)
    Station Info: len 0
> Event: Del Station (0x14) len 32                                   220.628097
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 0 (0x00000000)
    Station Info: len 0
< Request: Set Station (0x12) len 32 [ack]                           220.628395
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags 2: len 8
        Mask: 0x0000001c
            ShortPreamble
            WME
            MFP
        Set: 0x00000000
> Response: Set Station (0x12) len 4 [root]                          220.628462
    Status: Success (0)
< Request: Del Key (0x0c) len 32 [ack]                               220.628668
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Key: len 8
        Key Index: 0 (0x00)
> Response: Del Key (0x0c) len 4 [0x100]                             220.631539
    Status: Success (0)
< Request: Del Key (0x0c) len 32 [ack]                               220.631924
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Key: len 8
        Key Index: 0 (0x00)
> Response: Del Key (0x0c) len 4 [0x100]                             220.631989
    Status: Invalid argument (22)
< Request: Set Station (0x12) len 32 [ack]                           220.632087
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags 2: len 8
        Mask: 0x00000002
            Authorized
        Set: 0x00000000
> Response: Set Station (0x12) len 4 [root]                          220.632751
    Status: Success (0)
< Request: Set Station (0x12) len 32 [ack]                           220.633051
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags 2: len 8
        Mask: 0x0000001c
            ShortPreamble
            WME
            MFP
        Set: 0x00000000
> Response: Set Station (0x12) len 4 [root]                          220.633124
    Status: Success (0)
< Request: Del Station (0x14) len 20 [ack]                           220.633201
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
> Response: Del Station (0x14) len 4 [replace]                       220.633878
    Status: Success (0)
< RTNL: Get Link (0x12) len 16 [request,ack,dump]                    222.343662
    Flags: 773 (0x305)
    Sequence number: 1005582874 (0x3beffa1a)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             222.343760
    Flags: 2 (0x002)
    Sequence number: 1005582874 (0x3beffa1a)
    Port ID: 13279
> RTNL: New Link (0x10) len 1416 [multi]                             222.343760
    Flags: 2 (0x002)
    Sequence number: 1005582874 (0x3beffa1a)
    Port ID: 13279
> RTNL: New Link (0x10) len 1420 [multi]                             222.343826
    Flags: 2 (0x002)
    Sequence number: 1005582874 (0x3beffa1a)
    Port ID: 13279
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1416 [multi]                             222.343826
    Flags: 2 (0x002)
    Sequence number: 1005582874 (0x3beffa1a)
    Port ID: 13279
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            bd 05 00 00 b8 02 00 00 44 11 02 00 60 5f 03 00  ........D...`_..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            a5 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             222.343882
    Flags: 2 (0x002)
    Sequence number: 1005582874 (0x3beffa1a)
    Port ID: 13279
> RTNL: Done (0x03) len 4 [multi]                                    222.343989
    Flags: 2 (0x002)
    Sequence number: 1005582874 (0x3beffa1a)
    Port ID: 13279
    Status: 0
< RTNL: Get Link (0x12) len 16 [request,ack,dump]                    222.380870
    Flags: 773 (0x305)
    Sequence number: 1005620082 (0x3bf08b72)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             222.380969
    Flags: 2 (0x002)
    Sequence number: 1005620082 (0x3bf08b72)
    Port ID: 13283
> RTNL: New Link (0x10) len 1416 [multi]                             222.380969
    Flags: 2 (0x002)
    Sequence number: 1005620082 (0x3bf08b72)
    Port ID: 13283
> RTNL: New Link (0x10) len 1420 [multi]                             222.381035
    Flags: 2 (0x002)
    Sequence number: 1005620082 (0x3bf08b72)
    Port ID: 13283
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1416 [multi]                             222.381035
    Flags: 2 (0x002)
    Sequence number: 1005620082 (0x3bf08b72)
    Port ID: 13283
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            bd 05 00 00 b8 02 00 00 44 11 02 00 60 5f 03 00  ........D...`_..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            a5 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             222.381094
    Flags: 2 (0x002)
    Sequence number: 1005620082 (0x3bf08b72)
    Port ID: 13283
> RTNL: Done (0x03) len 4 [multi]                                    222.381185
    Flags: 2 (0x002)
    Sequence number: 1005620082 (0x3bf08b72)
    Port ID: 13283
    Status: 0

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: iwd_3.log --]
[-- Type: text/x-log; charset="US-ASCII"; name="iwd_3.log", Size: 7379525 bytes --]

Wireless monitor ver 2.12
Created interface nlmon
< RTNL: Get Link (0x12) len 4 [request,dump]                           0.678980
    Flags: 769 (0x301)
    Sequence number: 1704335018 (0x659616aa)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                               0.679072
    Flags: 2 (0x002)
    Sequence number: 1704335018 (0x659616aa)
    Port ID: 3674
> RTNL: New Link (0x10) len 1416 [multi]                               0.679072
    Flags: 2 (0x002)
    Sequence number: 1704335018 (0x659616aa)
    Port ID: 3674
> RTNL: New Link (0x10) len 1420 [multi]                               0.679136
    Flags: 2 (0x002)
    Sequence number: 1704335018 (0x659616aa)
    Port ID: 3674
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1416 [multi]                               0.679136
    Flags: 2 (0x002)
    Sequence number: 1704335018 (0x659616aa)
    Port ID: 3674
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 15 00 00 00 00 00 00 00 54 06 00 00  ............T...
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                               0.679180
    Flags: 2 (0x002)
    Sequence number: 1704335018 (0x659616aa)
    Port ID: 3674
> RTNL: Done (0x03) len 4 [multi]                                      0.679217
    Flags: 2 (0x002)
    Sequence number: 1704335018 (0x659616aa)
    Port ID: 3674
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                              0.679275
    Flags: 2 (0x002)
    Sequence number: 1704335019 (0x659616ab)
    Port ID: 3674
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                              0.679324
    Flags: 2 (0x002)
    Sequence number: 1704335019 (0x659616ab)
    Port ID: 3674
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                      0.679348
    Flags: 2 (0x002)
    Sequence number: 1704335019 (0x659616ab)
    Port ID: 3674
    Status: 0
> RTNL: New Route (0x18) len 36 [multi,0x20]                           2.649025
    Flags: 34 (0x022)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3717
    RTM Family: AF_INET
    RTM Destination Len: 0
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: global
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Gateway: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                           2.649025
    Flags: 34 (0x022)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3717
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.0
        Preferred Source: 192.168.1.212
        Output Interface Index: 2
> RTNL: New Route (0x18) len 36 [multi,0x20]                           2.649025
    Flags: 34 (0x022)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3717
    RTM Family: AF_INET
    RTM Destination Len: 32
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                           2.649025
    Flags: 34 (0x022)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3717
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.5.0
        Preferred Source: 192.168.5.1
        Output Interface Index: 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                 2.649058
    Flags: 34 (0x022)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3717
    Status: 0
< RTNL: Get Link (0x12) len 24 [request]                               2.649374
    Flags: 1 (0x001)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                       2.649422
    Flags: 0 (0x000)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 2505662807
< RTNL: Get Link (0x12) len 24 [request]                               2.649715
    Flags: 1 (0x001)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 1044                                       2.649784
    Flags: 0 (0x000)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 2967634631
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 15 00 00 00 00 00 00 00 54 06 00 00  ............T...
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: Get Link (0x12) len 24 [request,dump]                          2.661386
    Flags: 769 (0x301)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                               2.661513
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3720
> RTNL: New Link (0x10) len 1424 [multi]                               2.661513
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3720
> RTNL: New Link (0x10) len 1428 [multi]                               2.661577
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3720
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                               2.661577
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3720
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 15 00 00 00 00 00 00 00 54 06 00 00  ............T...
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                               2.661697
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3720
> RTNL: Done (0x03) len 4 [multi]                                      2.661818
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3720
    Status: 0
< RTNL: New Link (0x10) len 16 [request,ack]                           2.672880
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                            2.672927
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 3723
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                               2.673096
    Flags: 1 (0x001)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                       2.673147
    Flags: 0 (0x000)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3624282737
< RTNL: New Link (0x10) len 16 [request,ack]                           2.673357
    Flags: 5 (0x005)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                    2.673484
    Flags: 256 (0x100)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3723
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                           2.689033
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                            2.689135
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 3725
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                               2.689457
    Flags: 1 (0x001)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: New Link (0x10) len 1048                                       2.689510
    Flags: 0 (0x000)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 4101217720
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                           2.690034
    Flags: 5 (0x005)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                    2.690157
    Flags: 256 (0x100)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3725
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                           2.702651
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                            2.702705
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 3727
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 32 [request]                               2.702862
    Flags: 1 (0x001)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                       2.702911
    Flags: 0 (0x000)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 2941210371
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 15 00 00 00 00 00 00 00 54 06 00 00  ............T...
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                           2.703119
    Flags: 5 (0x005)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                    2.703219
    Flags: 256 (0x100)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3727
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                           2.714444
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                            2.714490
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 3729
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                               2.714653
    Flags: 1 (0x001)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: New Link (0x10) len 988                                        2.714703
    Flags: 0 (0x000)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3635940967
< RTNL: New Link (0x10) len 16 [request,ack]                           2.714894
    Flags: 5 (0x005)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                    2.714916
    Flags: 256 (0x100)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3729
    ACK: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                          2.725948
    Flags: 769 (0x301)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                               2.726067
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3731
> RTNL: New Link (0x10) len 1424 [multi]                               2.726067
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3731
> RTNL: New Link (0x10) len 1428 [multi]                               2.726129
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3731
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                               2.726129
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3731
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 15 00 00 00 00 00 00 00 54 06 00 00  ............T...
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                               2.726249
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3731
> RTNL: Done (0x03) len 4 [multi]                                      2.726333
    Flags: 2 (0x002)
    Sequence number: 1704335021 (0x659616ad)
    Port ID: 3731
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                              2.726476
    Flags: 2 (0x002)
    Sequence number: 1704335022 (0x659616ae)
    Port ID: 3731
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                              2.726525
    Flags: 2 (0x002)
    Sequence number: 1704335022 (0x659616ae)
    Port ID: 3731
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                      2.726554
    Flags: 2 (0x002)
    Sequence number: 1704335022 (0x659616ae)
    Port ID: 3731
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                      2.795252
> Result: New Interface (0x07) len 136 [multi]                         2.797001
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Result: New Interface (0x07) len 124 [multi]                         2.797001
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Complete: Get Interface (0x05) len 4 [multi]                         2.797067
    Status: 0
< Request: Get Station (0x11) len 8 [ack,0x300]                        2.823776
    Interface Index: 4 (0x00000004)
> Complete: Get Station (0x11) len 4 [multi]                           2.824504
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                          2.835227
    Interface Index: 4 (0x00000004)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                        2.835256
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                           2.844527
    Interface Index: 4 (0x00000004)
> Result: Get Power Save (0x3e) len 8                                  2.844560
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                        2.844573
    Status: Success (0)
< Request: Trigger Scan (0x21) len 64 [ack]                            2.869706
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                    2.871010
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                          2.871047
    Status: Success (0)
< Request: Get Station (0x11) len 8 [ack,0x300]                        2.885100
    Interface Index: 3 (0x00000003)
> Complete: Get Station (0x11) len 4 [multi]                           2.886046
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                          2.896804
    Interface Index: 3 (0x00000003)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                        2.896940
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                           2.907482
    Interface Index: 3 (0x00000003)
> Result: Get Power Save (0x3e) len 8                                  2.907632
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                        2.907724
    Status: Success (0)
< Request: Get Protocol Features (0x5f) len 0 [ack]                    2.948344
> Result: Get Protocol Features (0x5f) len 8                           2.948393
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]                 2.948408
    Status: Success (0)
< Request: Get Wiphy (0x01) len 4 [ack,0x300]                          2.948507
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                             2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                             2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                             2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                             2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                             2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                            2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                              2.948650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                             2.948714
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                    2.961299
> Result: Get Protocol Features (0x5f) len 8                           2.961335
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]                 2.961347
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                         2.961426
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                             2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                             2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                             2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                             2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                             2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                            2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                              2.961569
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                             2.961631
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                    2.974511
> Result: Get Protocol Features (0x5f) len 8                           2.974542
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]                 2.974554
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                         2.974643
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                             2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                             2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                             2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                             2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                             2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                            2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                              2.974781
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                             2.974837
    Status: 0
> Event: New Scan Results (0x22) len 84                                3.283673
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                         3.283752
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         3.283772
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         3.283788
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         3.283806
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         3.283826
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                          3.283973
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                      3.284052
    Generation: 471 (0x000001d7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 206221743765 (0x0000003003c61695)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 404 [multi]                      3.284052
    Generation: 471 (0x000001d7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 206221735379 (0x0000003003c5f5d3)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 376 [multi]                      3.284052
    Generation: 471 (0x000001d7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 133/255 available capacity 0 32µs/s units
                00 00 85 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 206221699650 (0x0000003003c56a42)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 440 [multi]                      3.284052
    Generation: 471 (0x000001d7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 84/255 available capacity 31250 32µs/s units
                02 00 54 12 7a                                   ..T.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 206221723661 (0x0000003003c5c80d)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 384 [multi]                      3.284052
    Generation: 471 (0x000001d7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 66/255 available capacity 0 32µs/s units
                01 00 42 00 00                                   ..B..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 206221674130 (0x0000003003c50692)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 316 [multi]                      3.284052
    Generation: 471 (0x000001d7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 01110000 
                00 03 01 0e                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  1 station(s) utilization 117/255 available capacity 31250 32µs/s units
                01 00 75 12 7a                                   ..u.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 00 0d 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 206221693140 (0x0000003003c550d4)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 396 [multi]                      3.284052
    Generation: 471 (0x000001d7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 206221709806 (0x0000003003c591ee)
        Signal mBm: -7900
> Complete: Get Scan (0x20) len 4 [multi]                              3.284166
    Status: 0
< Request: Trigger Scan (0x21) len 248 [ack]                           3.286137
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                   3.287391
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                          3.287435
    Status: Success (0)
> Event: New Scan Results (0x22) len 268                               8.923989
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                         8.924061
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.924086
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.924105
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.924124
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                         8.924141
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                          8.924262
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861788411 (0x0000003153f256fb)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 404 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861771380 (0x0000003153f21474)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 376 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 133/255 available capacity 0 32µs/s units
                00 00 85 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861826484 (0x0000003153f2ebb4)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 440 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 84/255 available capacity 31250 32µs/s units
                02 00 54 12 7a                                   ..T.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861811172 (0x0000003153f2afe4)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 384 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 68/255 available capacity 0 32µs/s units
                01 00 44 00 00                                   ..D..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861833359 (0x0000003153f3068f)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 316 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01010000 
                00 03 00 0a                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  1 station(s) utilization 123/255 available capacity 31250 32µs/s units
                01 00 7b 12 7a                                   ..{.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 00 0d 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861818672 (0x0000003153f2cd30)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 392 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861703568 (0x0000003153f10b90)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 388 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 62/255 available capacity 0 32µs/s units
                00 00 3e 00 00                                   ..>..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861724870 (0x0000003153f15ec6)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 380 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 39/255 available capacity 0 32µs/s units
                00 00 27 00 00                                   ..'..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861731068 (0x0000003153f176fc)
        Signal mBm: -3800
> Result: New Scan Results (0x22) len 480 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861738985 (0x0000003153f195e9)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 396 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 01 01 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861750182 (0x0000003153f1c1a6)
        Signal mBm: -7300
> Result: New Scan Results (0x22) len 372 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 57/255 available capacity 0 32µs/s units
                00 00 39 00 00                                   ..9..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861756641 (0x0000003153f1dae1)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 428 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861800234 (0x0000003153f2852a)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 356 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861840911 (0x0000003153f3240f)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 372 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 35/255 available capacity 0 32µs/s units
                02 00 23 00 00                                   ..#..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861850911 (0x0000003153f34b1f)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 384 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 28/255 available capacity 0 32µs/s units
                01 00 1c 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861856849 (0x0000003153f36251)
        Signal mBm: -6000
> Result: New Scan Results (0x22) len 240 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861862734 (0x0000003153f3794e)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 384 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 32/255 available capacity 0 32µs/s units
                02 00 20 00 00                                   .. ..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861868723 (0x0000003153f390b3)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 384 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 35/255 available capacity 0 32µs/s units
                02 00 23 00 00                                   ..#..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861874869 (0x0000003153f3a8b5)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 460 [multi]                      8.924365
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 51/255 available capacity 0 32µs/s units
                01 00 33 00 00                                   ..3..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861881015 (0x0000003153f3c0b7)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 452 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861894973 (0x0000003153f3f73d)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 460 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 33/255 available capacity 0 32µs/s units
                02 00 21 00 00                                   ..!..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861903202 (0x0000003153f41762)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 460 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000100 
                02 03 00 00 20                                   ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 65/255 available capacity 0 32µs/s units
                02 00 41 00 00                                   ..A..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861911848 (0x0000003153f43928)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 452 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861923307 (0x0000003153f465eb)
        Signal mBm: -9000
> Result: New Scan Results (0x22) len 452 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861934036 (0x0000003153f48fd4)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 428 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 21/255 available capacity 65535 32µs/s units
                00 00 15 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861955077 (0x0000003153f4e205)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 524 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861967838 (0x0000003153f513de)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 556 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861976327 (0x0000003153f53507)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 508 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 476
        BSSID E6:A9:40:DD:8F:E3
        TSF: 0 (0x0000000000000000)
        IEs: len 380
            SSID: ATT5fbNia2
                41 54 54 35 66 62 4e 69 61 32                    ATT5fbNia2      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  7 station(s) utilization 21/255 available capacity 65535 32µs/s units
                07 00 15 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Measurement Request
                Token: 45
                Request Mode: 6
                    Enable bit set
                    Request bit set
                Type: Clear Channel Assessment
                2d 06 01 2c 00 00 04 10 7c 2c ee dd 00 1d        -..,....|,....  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 82 86 4f 3d  ...7*.. .X....O=
                ae 46 8c cb a3 0f 71 29 27 82 89 c2 00 01 01 01  .F....q)'.......
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    82 86 4f 3d ae 46 8c cb a3 0f 71 29 27 82 89 c2  ..O=.F....q)'...
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861984400 (0x0000003153f55490)
        Signal mBm: -8900
> Result: New Scan Results (0x22) len 492 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 10000000 
                01 03 00 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 21/255 available capacity 65535 32µs/s units
                06 00 15 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211861997056 (0x0000003153f58600)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 440 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862005181 (0x0000003153f5a5bd)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862017525 (0x0000003153f5d5f5)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 488 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862025598 (0x0000003153f5f57e)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 488 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 33/255 available capacity 0 32µs/s units
                04 00 21 00 00                                   ..!..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862038723 (0x0000003153f628c3)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 516 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862050546 (0x0000003153f656f2)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 556 [multi]                      8.924508
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862067785 (0x0000003153f69a49)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 428 [multi]                      8.924766
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 13/255 available capacity 65535 32µs/s units
                00 00 0d ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862076535 (0x0000003153f6bc77)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 492 [multi]                      8.924766
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 13/255 available capacity 65535 32µs/s units
                05 00 0d ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862085129 (0x0000003153f6de09)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 412 [multi]                      8.924766
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862093306 (0x0000003153f6fdfa)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                      8.924766
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 34/255 available capacity 0 32µs/s units
                02 00 22 00 00                                   .."..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862113827 (0x0000003153f74e23)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                      8.924766
    Generation: 513 (0x00000201)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                00 02 00 08                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 16/255 available capacity 65535 32µs/s units
                02 00 10 ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 211862125493 (0x0000003153f77bb5)
        Signal mBm: -7000
> Complete: Get Scan (0x20) len 4 [multi]                              8.924973
    Status: 0
< Request: Trigger Scan (0x21) len 128 [ack]                           8.926689
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                   8.927863
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                          8.927902
    Status: Success (0)
> Event: New Scan Results (0x22) len 148                              14.564034
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
< Request: Get Scan (0x20) len 12 [ack,0x300]                         14.564275
    Wireless Device: 1 (0x0000000000000001)
> RTNL: New Link (0x10) len 48                                        14.564297
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        14.564318
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        14.564334
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        14.564354
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        14.564373
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> Result: New Scan Results (0x22) len 440 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501862763 (0x00000032a41f0b6b)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 404 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501849742 (0x00000032a41ed88e)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 376 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 114/255 available capacity 0 32µs/s units
                00 00 72 00 00                                   ..r..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501899429 (0x00000032a41f9aa5)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 440 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 62/255 available capacity 31250 32µs/s units
                02 00 3e 12 7a                                   ..>.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501883856 (0x00000032a41f5dd0)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 316 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01010000 
                02 03 00 0a                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  1 station(s) utilization 104/255 available capacity 31250 32µs/s units
                01 00 68 12 7a                                   ..h.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 00 0d 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501891564 (0x00000032a41f7bec)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 392 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501826825 (0x00000032a41e7f09)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 380 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 58/255 available capacity 0 32µs/s units
                00 00 3a 00 00                                   ..:..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501834429 (0x00000032a41e9cbd)
        Signal mBm: -3400
> Result: New Scan Results (0x22) len 480 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501818336 (0x00000032a41e5de0)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 372 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 79/255 available capacity 0 32µs/s units
                00 00 4f 00 00                                   ..O..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501841721 (0x00000032a41eb939)
        Signal mBm: -5800
> Result: New Scan Results (0x22) len 428 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501875627 (0x00000032a41f3dab)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 356 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501949273 (0x00000032a4205d59)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 372 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 32/255 available capacity 0 32µs/s units
                02 00 20 00 00                                   .. ..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501934637 (0x00000032a420242d)
        Signal mBm: -4500
> Result: New Scan Results (0x22) len 384 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 31/255 available capacity 0 32µs/s units
                01 00 1f 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501915106 (0x00000032a41fd7e2)
        Signal mBm: -5900
> Result: New Scan Results (0x22) len 240 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                01 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501927398 (0x00000032a42007e6)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 384 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 35/255 available capacity 0 32µs/s units
                02 00 23 00 00                                   ..#..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501957189 (0x00000032a4207c45)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 384 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 61/255 available capacity 0 32µs/s units
                02 00 3d 00 00                                   ..=..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501797190 (0x00000032a41e0b46)
        Signal mBm: -7300
> Result: New Scan Results (0x22) len 460 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 78/255 available capacity 0 32µs/s units
                01 00 4e 00 00                                   ..N..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501965731 (0x00000032a4209da3)
        Signal mBm: -4500
> Result: New Scan Results (0x22) len 460 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 89/255 available capacity 0 32µs/s units
                02 00 59 00 00                                   ..Y..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501981668 (0x00000032a420dbe4)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                     14.564383
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501991252 (0x00000032a4210154)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 452 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502003647 (0x00000032a42131bf)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 428 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 31/255 available capacity 65535 32µs/s units
                00 00 1f ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502013752 (0x00000032a4215938)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 524 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502023908 (0x00000032a42180e4)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 556 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502033543 (0x00000032a421a687)
        Signal mBm: -8900
> Result: New Scan Results (0x22) len 492 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 03 00 40                                      ...@            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 31/255 available capacity 65535 32µs/s units
                06 00 1f ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502043543 (0x00000032a421cd97)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 440 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502053126 (0x00000032a421f306)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 452 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502062918 (0x00000032a4221946)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 488 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502071616 (0x00000032a4223b40)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 488 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 41/255 available capacity 0 32µs/s units
                04 00 29 00 00                                   ..)..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502087501 (0x00000032a422794d)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 516 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502101616 (0x00000032a422b070)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 556 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502114741 (0x00000032a422e3b5)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 428 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 10/255 available capacity 65535 32µs/s units
                00 00 0a ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502124532 (0x00000032a42309f4)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 492 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 10/255 available capacity 65535 32µs/s units
                05 00 0a ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502134689 (0x00000032a42331a1)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 412 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502144480 (0x00000032a42357e0)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 484 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 16/255 available capacity 0 32µs/s units
                02 00 10 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502157293 (0x00000032a42389ed)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 472 [multi]                     14.564475
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 29/255 available capacity 65535 32µs/s units
                02 00 1d ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217502181511 (0x00000032a423e887)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 396 [multi]                     14.564800
    Generation: 550 (0x00000226)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00100000 
                00 02 00 04                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 217501907346 (0x00000032a41fb992)
        Signal mBm: -7600
> Complete: Get Scan (0x20) len 4 [multi]                             14.565025
    Status: 0
> Event: New Station (0x13) len 148                                   17.929546
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 1 (0x00000001)
    Station Info: len 0
    Information Elements: len 112
        SSID: RuneAudioAP
            52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
        Supported rates:
            1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit/s
            02 04 0b 16 0c 12 18 24                          .......$        
        Extended supported rates:
            24.0 36.0 48.0 54.0 Mbit/s
            30 48 60 6c                                      0H`l            
        Tag 33: len 2
            00 16                                            ..              
        Tag 36: len 28
            01 01 02 01 03 01 04 01 05 01 06 01 07 01 08 01  ................
            09 01 0a 01 0b 01 0c 01 0d 01 0e 01              ............    
        RSN:
            Group Data Cipher Suite: len 4
                CCMP (00:0f:ac) suite  04
            Pairwise Cipher Suite: len 4
                CCMP (00:0f:ac) suite  04
            AKM Suite: len 4
                PSK; RSNA PSK (00:0f:ac) suite  02
            RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
            RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
            01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
            ac 02 00 00                                      ....            
        RM Enabled Capabilities: len 5
            Enabled: bit  4: Beacon Passive Measurement
            Enabled: bit  5: Beacon Active Measurement
            Enabled: bit  6: Beacon Table Measurement
            Operating Channel Max Measurement Duration: 0
            Non-Operating Channel Max Measurement Duration: 0
            Measurement Pilot Capability: 0
            70 00 00 00 00                                   p....           
        Extended Capabilities: len 10
            Capability: bit  2: Extended channel switching
            Capability: bit 19: BSS transition
            Capability: bit 22: Multiple BSSID
            Capability: bit 23: Timing measurement
            Capability: bit 32: QoS Map
            Capability: bit 62: Opmode Notification
            Capability: bit 63: (null)
            04 00 c8 00 01 00 00 c0 01 21                    .........!      
        Vendor specific: len 6
            OUI: 00:17:35 type:08
            00 17 35 08 01 00                                ..5...          
< Request: Set Station (0x12) len 32 [ack]                            17.929808
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags 2: len 8
        Mask: 0x00000002
            Authorized
        Set: 0x00000000
> Response: Set Station (0x12) len 4 [root]                           17.930465
    Status: Success (0)
< Request: New Key (0x0b) len 64 [ack]                                17.930580
    Interface Index: 4 (0x00000004)
    Key: len 52
        Key Data: len 16
            d0 dc 1d 21 67 bf e8 74 b6 ac 60 49 87 b2 54 05  ...!g..t..`I..T.
        Key Cipher: CCMP (00:0f:ac) suite  04
        Key Index: 1 (0x01)
        Key Type: Group
        Default Key Types: len 4
            Multicast: true
> Response: New Key (0x0b) len 4 [0x100]                              17.932333
    Status: Success (0)
< Request: Set Key (0x0a) len 32 [ack]                                17.932432
    Interface Index: 4 (0x00000004)
    Key: len 20
        Key Index: 1 (0x01)
        Default: true
        Default Key Types: len 4
            Multicast: true
> Response: Set Key (0x0a) len 4 [0x100]                              17.932969
    Status: Success (0)
< Request: Get Key (0x09) len 16 [ack]                                17.933034
    Interface Index: 4 (0x00000004)
    Key Index: 1 (0x01)
> Result: New Key (0x0b) len 44                                       17.933557
    Interface Index: 4 (0x00000004)
    Key Index: 1 (0x01)
    Key Cipher: BIP (00:0f:ac) suite  06
    Key: len 16
        Key Cipher: BIP (00:0f:ac) suite  06
        Key Index: 1 (0x01)
> Response: Get Key (0x09) len 4 [0x100]                              17.933578
    Status: Success (0)
< PAE: len 121                                                        17.934070
    Interface Index: 4
    EAPoL: len 121
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 117
        Descriptor Type: 2
        Key MIC: false
        Secure: false
        Error: false
        Request: false
        Encrypted Key Data: false
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: false
        Key ACK: true
        Key Length: 16
        Key Replay Counter: 1
        Key NONCE
            a3 11 56 ed d2 bc be db 21 a5 69 50 ff 09 0d d7  ..V.....!.iP....
            06 70 28 64 3f 38 10 8e d5 6f 65 b9 90 36 86 d3  .p(d?8...oe..6..
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key Data: len 22
            Vendor specific: len 20
                IEEE 802.11 (00:0f:ac) type: 04
                PMKID KDE
                00 0f ac 04 3b 14 ee 30 c8 5e 17 04 f4 7b 82 33  ....;..0.^...{.3
                72 91 2e 27                                      r..'            
        02 03 00 75 02 00 8a 00 10 00 00 00 00 00 00 00  ...u............
        01 a3 11 56 ed d2 bc be db 21 a5 69 50 ff 09 0d  ...V.....!.iP...
        d7 06 70 28 64 3f 38 10 8e d5 6f 65 b9 90 36 86  ..p(d?8...oe..6.
        d3 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 16 dd 14 00 0f ac 04 3b 14 ee 30 c8 5e 17  .........;..0.^.
        04 f4 7b 82 33 72 91 2e 27                       ..{.3r..'       
> PAE: len 121                                                        17.937618
    Interface Index: 4
    EAPoL: len 121
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 117
        Descriptor Type: 2
        Key MIC: true
        Secure: false
        Error: false
        Request: false
        Encrypted Key Data: false
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: false
        Key ACK: false
        Key Length: 0
        Key Replay Counter: 1
        Key NONCE
            95 4b 23 8d da bb dc 59 1b f2 1a bd 23 70 81 9f  .K#....Y....#p..
            61 20 17 11 3f 31 93 e7 57 49 33 9c 6b be e8 ca  a ..?1..WI3.k...
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            5a 1b 07 6a 7f c6 b0 6c ab 4a 1e 41 66 9a c7 89  Z..j...l.J.Af...
        Key Data: len 22
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        02 03 00 75 02 01 0a 00 00 00 00 00 00 00 00 00  ...u............
        01 95 4b 23 8d da bb dc 59 1b f2 1a bd 23 70 81  ..K#....Y....#p.
        9f 61 20 17 11 3f 31 93 e7 57 49 33 9c 6b be e8  .a ..?1..WI3.k..
        ca 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 5a 1b 07 6a 7f c6 b0 6c ab 4a 1e 41 66 9a c7  .Z..j...l.J.Af..
        89 00 16 30 14 01 00 00 0f ac 04 01 00 00 0f ac  ...0............
        04 01 00 00 0f ac 02 00 00                       .........       
< PAE: len 155                                                        17.939362
    Interface Index: 4
    EAPoL: len 155
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 151
        Descriptor Type: 2
        Key MIC: true
        Secure: true
        Error: false
        Request: false
        Encrypted Key Data: true
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: true
        Key ACK: true
        Key Length: 16
        Key Replay Counter: 2
        Key NONCE
            a3 11 56 ed d2 bc be db 21 a5 69 50 ff 09 0d d7  ..V.....!.iP....
            06 70 28 64 3f 38 10 8e d5 6f 65 b9 90 36 86 d3  .p(d?8...oe..6..
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            b7 55 b2 08 9a f1 34 85 ef b4 64 e7 fa a6 3f e3  .U....4...d...?.
        Key Data: len 56
            13 9b 2b 5a 9b 5b 24 45 bf 04 6b 23 42 2b 7f 59  ..+Z.[$E..k#B+.Y
            db 90 2b 47 91 81 cf 6c ea a2 29 73 b5 6e 7c 62  ..+G...l..)s.n|b
            5e f8 1e 00 31 69 ca c6 f6 9e 84 19 36 af 0a b0  ^...1i......6...
            f8 6e 8e 8f ce 18 a8 6a                          .n.....j        
        02 03 00 97 02 13 ca 00 10 00 00 00 00 00 00 00  ................
        02 a3 11 56 ed d2 bc be db 21 a5 69 50 ff 09 0d  ...V.....!.iP...
        d7 06 70 28 64 3f 38 10 8e d5 6f 65 b9 90 36 86  ..p(d?8...oe..6.
        d3 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 b7 55 b2 08 9a f1 34 85 ef b4 64 e7 fa a6 3f  ..U....4...d...?
        e3 00 38 13 9b 2b 5a 9b 5b 24 45 bf 04 6b 23 42  ..8..+Z.[$E..k#B
        2b 7f 59 db 90 2b 47 91 81 cf 6c ea a2 29 73 b5  +.Y..+G...l..)s.
        6e 7c 62 5e f8 1e 00 31 69 ca c6 f6 9e 84 19 36  n|b^...1i......6
        af 0a b0 f8 6e 8e 8f ce 18 a8 6a                 ....n.....j     
> PAE: len 99                                                         17.969827
    Interface Index: 4
    EAPoL: len 99
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 95
        Descriptor Type: 2
        Key MIC: true
        Secure: true
        Error: false
        Request: false
        Encrypted Key Data: false
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: false
        Key ACK: false
        Key Length: 0
        Key Replay Counter: 2
        Key NONCE
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            8b 57 f5 03 fe 70 f5 23 c0 68 f0 30 bc a4 92 f4  .W...p.#.h.0....
        Key Data: len 0
        02 03 00 5f 02 03 0a 00 00 00 00 00 00 00 00 00  ..._............
        02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 8b 57 f5 03 fe 70 f5 23 c0 68 f0 30 bc a4 92  ..W...p.#.h.0...
        f4 00 00                                         ...             
< Request: New Key (0x0b) len 56 [ack]                                17.970332
    Key Data: len 16
        ab 84 a4 f5 6a b9 a1 2f 08 2f c9 83 86 78 2f e9  ....j.././...x/.
    Key Cipher: CCMP (00:0f:ac) suite  04
    MAC Address 50:84:92:A6:7A:7A
    Key Index: 0 (0x00)
    Interface Index: 4 (0x00000004)
> Response: New Key (0x0b) len 4 [0x100]                              17.971088
    Status: Success (0)
< Request: Set Station (0x12) len 32 [ack]                            17.971171
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags 2: len 8
        Mask: 0x00000002
            Authorized
        Set: 0x00000002
            Authorized
> Response: Set Station (0x12) len 4 [root]                           17.971554
    Status: Success (0)
< Request: Get Reg (0x1f) len 0 [ack,0x300]                           22.625555
> Result: Get Reg (0x1f) len 492 [multi]                              22.625623
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                              22.625623
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                              22.625679
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                         23.482369
    Flags: 769 (0x301)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                              23.482573
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4067
> RTNL: New Link (0x10) len 1424 [multi]                              23.482573
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4067
> RTNL: New Link (0x10) len 1428 [multi]                              23.482660
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4067
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                              23.482660
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4067
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            53 00 00 00 28 00 00 00 20 22 00 00 40 11 00 00  S...(... "..@...
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            26 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  &...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                              23.482794
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4067
> RTNL: Done (0x03) len 4 [multi]                                     23.482870
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4067
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             23.483021
    Flags: 2 (0x002)
    Sequence number: 1704335043 (0x659616c3)
    Port ID: 4067
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             23.483073
    Flags: 2 (0x002)
    Sequence number: 1704335043 (0x659616c3)
    Port ID: 4067
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     23.483104
    Flags: 2 (0x002)
    Sequence number: 1704335043 (0x659616c3)
    Port ID: 4067
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                         23.540732
    Flags: 769 (0x301)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                              23.540848
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4075
> RTNL: New Link (0x10) len 1424 [multi]                              23.540848
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4075
> RTNL: New Link (0x10) len 1428 [multi]                              23.540911
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4075
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                              23.540911
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4075
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            53 00 00 00 28 00 00 00 20 22 00 00 40 11 00 00  S...(... "..@...
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            26 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  &...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                              23.541037
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4075
> RTNL: Done (0x03) len 4 [multi]                                     23.541124
    Flags: 2 (0x002)
    Sequence number: 1704335042 (0x659616c2)
    Port ID: 4075
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             23.541270
    Flags: 2 (0x002)
    Sequence number: 1704335043 (0x659616c3)
    Port ID: 4075
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             23.541320
    Flags: 2 (0x002)
    Sequence number: 1704335043 (0x659616c3)
    Port ID: 4075
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     23.541348
    Flags: 2 (0x002)
    Sequence number: 1704335043 (0x659616c3)
    Port ID: 4075
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                     23.576450
> Result: New Interface (0x07) len 136 [multi]                        23.578155
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Result: New Interface (0x07) len 124 [multi]                        23.578155
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Complete: Get Interface (0x05) len 4 [multi]                        23.578229
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                           23.595842
    Interface Index: 4 (0x00000004)
> Result: New Interface (0x07) len 136                                23.596775
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Response: Get Interface (0x05) len 4 [0x100]                        23.596800
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           23.610425
    Interface Index: 3 (0x00000003)
> Result: New Interface (0x07) len 124                                23.611267
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Response: Get Interface (0x05) len 4 [0x100]                        23.611291
    Status: Success (0)
< Request: Trigger Scan (0x21) len 64 [ack]                           23.633688
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                   23.634924
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                         23.634959
    Status: Success (0)
> Event: New Scan Results (0x22) len 84                               24.047691
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                        24.047748
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        24.047767
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        24.047783
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        24.047807
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        24.047827
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                         24.047935
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                     24.048011
    Generation: 556 (0x0000022c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 226985796859 (0x00000034d96864fb)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 404 [multi]                     24.048011
    Generation: 556 (0x0000022c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 226985789411 (0x00000034d96847e3)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 440 [multi]                     24.048011
    Generation: 556 (0x0000022c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 74/255 available capacity 31250 32µs/s units
                02 00 4a 12 7a                                   ..J.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 226985779047 (0x00000034d9681f67)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 428 [multi]                     24.048011
    Generation: 556 (0x0000022c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 226985804568 (0x00000034d9688318)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 396 [multi]                     24.048011
    Generation: 556 (0x0000022c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 226985756391 (0x00000034d967c6e7)
        Signal mBm: -7400
> Complete: Get Scan (0x20) len 4 [multi]                             24.048141
    Status: 0
< Request: Trigger Scan (0x21) len 248 [ack]                          24.049713
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                  24.050988
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                         24.051024
    Status: Success (0)
> Event: New Scan Results (0x22) len 268                              29.689491
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                        29.689556
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        29.689579
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        29.689601
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        29.689623
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        29.689647
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                         29.689840
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627333805 (0x0000003629ab6aad)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 404 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627326201 (0x0000003629ab4cf9)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 440 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 74/255 available capacity 31250 32µs/s units
                02 00 4a 12 7a                                   ..J.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627318544 (0x0000003629ab2f10)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 428 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627307659 (0x0000003629ab048b)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 396 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627353544 (0x0000003629abb7c8)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 372 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 38/255 available capacity 0 32µs/s units
                02 00 26 00 00                                   ..&..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                04 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627237659 (0x0000003629a9f31b)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 388 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 73/255 available capacity 0 32µs/s units
                00 00 49 00 00                                   ..I..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627255888 (0x0000003629aa3a50)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 480 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627262190 (0x0000003629aa52ee)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 392 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627270576 (0x0000003629aa73b0)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 380 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 54/255 available capacity 0 32µs/s units
                00 00 36 00 00                                   ..6..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627278024 (0x0000003629aa90c8)
        Signal mBm: -3800
> Result: New Scan Results (0x22) len 336 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0a 00 05 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627288909 (0x0000003629aabb4d)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 396 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0a 00 05 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627296878 (0x0000003629aada6e)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 376 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 117/255 available capacity 0 32µs/s units
                00 00 75 00 00                                   ..u..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627341669 (0x0000003629ab8965)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 316 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01010000 
                01 03 00 0a                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  1 station(s) utilization 82/255 available capacity 31250 32µs/s units
                01 00 52 12 7a                                   ..R.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 00 0d 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627347190 (0x0000003629ab9ef6)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 240 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                01 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                04 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627360732 (0x0000003629abd3dc)
        Signal mBm: -7300
> Result: New Scan Results (0x22) len 384 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 35/255 available capacity 0 32µs/s units
                02 00 23 00 00                                   ..#..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627371617 (0x0000003629abfe61)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 460 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 110/255 available capacity 0 32µs/s units
                01 00 6e 00 00                                   ..n..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627379117 (0x0000003629ac1bad)
        Signal mBm: -4500
> Result: New Scan Results (0x22) len 452 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627393805 (0x0000003629ac550d)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 460 [multi]                     29.689949
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 75/255 available capacity 0 32µs/s units
                02 00 4b 00 00                                   ..K..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627406357 (0x0000003629ac8615)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 460 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 111/255 available capacity 0 32µs/s units
                02 00 6f 00 00                                   ..o..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627421617 (0x0000003629acc1b1)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 452 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627437919 (0x0000003629ad015f)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 452 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627453909 (0x0000003629ad3fd5)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 428 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID EC:A9:40:DD:8F:E3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 30/255 available capacity 65535 32µs/s units
                00 00 1e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8a 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627462138 (0x0000003629ad5ffa)
        Signal mBm: -8900
> Result: New Scan Results (0x22) len 428 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 65/255 available capacity 65535 32µs/s units
                00 00 41 ff ff                                   ..A..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627475106 (0x0000003629ad92a2)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 524 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627492450 (0x0000003629add662)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 556 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627501200 (0x0000003629adf890)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 492 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID E6:A9:40:DD:8F:E3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT5fbNia2
                41 54 54 35 66 62 4e 69 61 32                    ATT5fbNia2      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 10000000 
                00 03 01 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  7 station(s) utilization 30/255 available capacity 65535 32µs/s units
                07 00 1e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 82 86 4f 3d  ...7*.. .X....O=
                ae 46 8c cb a3 0f 71 29 27 82 89 c2 00 01 01 01  .F....q)'.......
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    82 86 4f 3d ae 46 8c cb a3 0f 71 29 27 82 89 c2  ..O=.F....q)'...
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627513596 (0x0000003629ae28fc)
        Signal mBm: -8900
> Result: New Scan Results (0x22) len 492 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                02 03 00 40                                      ...@            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 65/255 available capacity 65535 32µs/s units
                06 00 41 ff ff                                   ..A..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627522137 (0x0000003629ae4a59)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 440 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627544429 (0x0000003629aea16d)
        Signal mBm: -9100
> Result: New Scan Results (0x22) len 452 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627552606 (0x0000003629aec15e)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 488 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627560887 (0x0000003629aee1b7)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 488 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 42/255 available capacity 0 32µs/s units
                04 00 2a 00 00                                   ..*..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627569898 (0x0000003629af04ea)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 428 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 43/255 available capacity 65535 32µs/s units
                00 00 2b ff ff                                   ..+..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627587294 (0x0000003629af48de)
        Signal mBm: -7200
> Result: New Scan Results (0x22) len 492 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 43/255 available capacity 65535 32µs/s units
                05 00 2b ff ff                                   ..+..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627598804 (0x0000003629af75d4)
        Signal mBm: -7200
> Result: New Scan Results (0x22) len 516 [multi]                     29.690110
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627607398 (0x0000003629af9766)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 556 [multi]                     29.690399
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627615731 (0x0000003629afb7f3)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 412 [multi]                     29.690399
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627623960 (0x0000003629afd818)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 484 [multi]                     29.690399
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 7/255 available capacity 0 32µs/s units
                02 00 07 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627639429 (0x0000003629b01485)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                     29.690399
    Generation: 595 (0x00000253)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 39/255 available capacity 65535 32µs/s units
                02 00 27 ff ff                                   ..'..           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 232627651460 (0x0000003629b04384)
        Signal mBm: -6800
> Complete: Get Scan (0x20) len 4 [multi]                             29.690619
    Status: 0
< Request: Trigger Scan (0x21) len 128 [ack]                          29.692354
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                  29.693614
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                         29.693649
    Status: Success (0)
> Event: New Scan Results (0x22) len 148                              35.332536
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                        35.332595
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        35.332613
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        35.332628
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        35.332644
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        35.332669
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                         35.332794
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270388020 (0x000000377a059734)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 440 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 90/255 available capacity 31250 32µs/s units
                02 00 5a 12 7a                                   ..Z.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270380207 (0x000000377a0578af)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 428 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270395416 (0x000000377a05b418)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 396 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270412186 (0x000000377a05f59a)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 372 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 36/255 available capacity 0 32µs/s units
                02 00 24 00 00                                   ..$..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                04 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270439322 (0x000000377a065f9a)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 480 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01000010 
                00 01 00 42                                      ...B            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270320624 (0x000000377a048ff0)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 392 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270298593 (0x000000377a0439e1)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 380 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 41/255 available capacity 0 32µs/s units
                00 00 29 00 00                                   ..)..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270337447 (0x000000377a04d1a7)
        Signal mBm: -3600
> Result: New Scan Results (0x22) len 336 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270364739 (0x000000377a053c43)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 396 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270372291 (0x000000377a0559c3)
        Signal mBm: -7300
> Result: New Scan Results (0x22) len 376 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 84/255 available capacity 0 32µs/s units
                00 00 54 00 00                                   ..T..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270420259 (0x000000377a061523)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 240 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                04 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270427291 (0x000000377a06309b)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 384 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 29/255 available capacity 0 32µs/s units
                02 00 1d 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270452759 (0x000000377a069417)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 460 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 131/255 available capacity 0 32µs/s units
                01 00 83 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270460988 (0x000000377a06b43c)
        Signal mBm: -4500
> Result: New Scan Results (0x22) len 460 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 79/255 available capacity 0 32µs/s units
                02 00 4f 00 00                                   ..O..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270476822 (0x000000377a06f216)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 452 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270490468 (0x000000377a072764)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 452 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270503697 (0x000000377a075b11)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 428 [multi]                     35.332892
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 59/255 available capacity 65535 32µs/s units
                00 00 3b ff ff                                   ..;..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270512811 (0x000000377a077eab)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 524 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270522811 (0x000000377a07a5bb)
        Signal mBm: -9000
> Result: New Scan Results (0x22) len 556 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270538853 (0x000000377a07e465)
        Signal mBm: -8900
> Result: New Scan Results (0x22) len 492 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 59/255 available capacity 65535 32µs/s units
                06 00 3b ff ff                                   ..;..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270548540 (0x000000377a080a3c)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 440 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270559009 (0x000000377a083321)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 452 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270568957 (0x000000377a0859fd)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 488 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270579426 (0x000000377a0882e2)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 488 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 38/255 available capacity 0 32µs/s units
                04 00 26 00 00                                   ..&..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270589790 (0x000000377a08ab5e)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 428 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 12/255 available capacity 65535 32µs/s units
                00 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270635467 (0x000000377a095dcb)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 492 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 10000000 
                02 03 00 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 12/255 available capacity 65535 32µs/s units
                05 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270645259 (0x000000377a09840b)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 516 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270602915 (0x000000377a08dea3)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 556 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270624790 (0x000000377a093416)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 412 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01111000 
                00 01 00 1e                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270654634 (0x000000377a09a8aa)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 484 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 13/255 available capacity 0 32µs/s units
                02 00 0d 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270667446 (0x000000377a09dab6)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00110000 
                01 02 00 0c                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 40/255 available capacity 65535 32µs/s units
                02 00 28 ff ff                                   ..(..           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270680207 (0x000000377a0a0c8f)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 372 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 59/255 available capacity 0 32µs/s units
                00 00 3b 00 00                                   ..;..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270328333 (0x000000377a04ae0d)
        Signal mBm: -6100
> Result: New Scan Results (0x22) len 384 [multi]                     35.333045
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 73/255 available capacity 0 32µs/s units
                01 00 49 00 00                                   ..I..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270405312 (0x000000377a05dac0)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 384 [multi]                     35.333324
    Generation: 631 (0x00000277)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 22/255 available capacity 0 32µs/s units
                01 00 16 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 238270446822 (0x000000377a067ce6)
        Signal mBm: -7400
> Complete: Get Scan (0x20) len 4 [multi]                             35.333523
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                         35.354766
    Flags: 769 (0x301)
    Sequence number: 1704335054 (0x659616ce)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                              35.354887
    Flags: 2 (0x002)
    Sequence number: 1704335054 (0x659616ce)
    Port ID: 4208
> RTNL: New Link (0x10) len 1424 [multi]                              35.354887
    Flags: 2 (0x002)
    Sequence number: 1704335054 (0x659616ce)
    Port ID: 4208
> RTNL: New Link (0x10) len 1428 [multi]                              35.354950
    Flags: 2 (0x002)
    Sequence number: 1704335054 (0x659616ce)
    Port ID: 4208
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                              35.354950
    Flags: 2 (0x002)
    Sequence number: 1704335054 (0x659616ce)
    Port ID: 4208
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            5a 00 00 00 2d 00 00 00 3d 24 00 00 2c 13 00 00  Z...-...=$..,...
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            28 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                              35.355071
    Flags: 2 (0x002)
    Sequence number: 1704335054 (0x659616ce)
    Port ID: 4208
> RTNL: Done (0x03) len 4 [multi]                                     35.355150
    Flags: 2 (0x002)
    Sequence number: 1704335054 (0x659616ce)
    Port ID: 4208
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             35.355295
    Flags: 2 (0x002)
    Sequence number: 1704335055 (0x659616cf)
    Port ID: 4208
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             35.355344
    Flags: 2 (0x002)
    Sequence number: 1704335055 (0x659616cf)
    Port ID: 4208
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     35.355373
    Flags: 2 (0x002)
    Sequence number: 1704335055 (0x659616cf)
    Port ID: 4208
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                           35.370432
    Interface Index: 2 (0x00000002)
> Response: Get Interface (0x05) len 4                                35.370469
    Status: No such device (19)
> RTNL: New Address (0x14) len 60 [multi]                             35.466242
    Flags: 2 (0x002)
    Sequence number: 1704335053 (0x659616cd)
    Port ID: 4218
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             35.466297
    Flags: 2 (0x002)
    Sequence number: 1704335053 (0x659616cd)
    Port ID: 4218
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     35.466325
    Flags: 2 (0x002)
    Sequence number: 1704335053 (0x659616cd)
    Port ID: 4218
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             35.728452
    Flags: 2 (0x002)
    Sequence number: 1704335053 (0x659616cd)
    Port ID: 4221
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             35.728507
    Flags: 2 (0x002)
    Sequence number: 1704335053 (0x659616cd)
    Port ID: 4221
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     35.728535
    Flags: 2 (0x002)
    Sequence number: 1704335053 (0x659616cd)
    Port ID: 4221
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             35.965836
    Flags: 2 (0x002)
    Sequence number: 1704335053 (0x659616cd)
    Port ID: 4223
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             35.965891
    Flags: 2 (0x002)
    Sequence number: 1704335053 (0x659616cd)
    Port ID: 4223
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     35.965922
    Flags: 2 (0x002)
    Sequence number: 1704335053 (0x659616cd)
    Port ID: 4223
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             37.248873
    Flags: 2 (0x002)
    Sequence number: 1704335055 (0x659616cf)
    Port ID: 4258
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             37.248926
    Flags: 2 (0x002)
    Sequence number: 1704335055 (0x659616cf)
    Port ID: 4258
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     37.248956
    Flags: 2 (0x002)
    Sequence number: 1704335055 (0x659616cf)
    Port ID: 4258
    Status: 0
> Event: Del Station (0x14) len 32                                    39.232378
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 0 (0x00000000)
    Station Info: len 0
< Request: Del Station (0x14) len 36 [ack]                            39.232696
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Management Subtype: 12 (0x0c)
    Reason Code: Unspecified reason
> Response: Del Station (0x14) len 4 [replace]                        39.233292
    Status: Success (0)
> Event: Del Station (0x14) len 32                                    39.234193
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 0 (0x00000000)
    Station Info: len 0
> RTNL: New Address (0x14) len 60 [multi]                             39.278960
    Flags: 2 (0x002)
    Sequence number: 1704335057 (0x659616d1)
    Port ID: 4260
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             39.279137
    Flags: 2 (0x002)
    Sequence number: 1704335057 (0x659616d1)
    Port ID: 4260
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     39.279260
    Flags: 2 (0x002)
    Sequence number: 1704335057 (0x659616d1)
    Port ID: 4260
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             40.259617
    Flags: 2 (0x002)
    Sequence number: 1704335058 (0x659616d2)
    Port ID: 4290
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             40.259842
    Flags: 2 (0x002)
    Sequence number: 1704335058 (0x659616d2)
    Port ID: 4290
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     40.259966
    Flags: 2 (0x002)
    Sequence number: 1704335058 (0x659616d2)
    Port ID: 4290
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             45.142856
    Flags: 2 (0x002)
    Sequence number: 1704335063 (0x659616d7)
    Port ID: 4332
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             45.142910
    Flags: 2 (0x002)
    Sequence number: 1704335063 (0x659616d7)
    Port ID: 4332
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     45.142953
    Flags: 2 (0x002)
    Sequence number: 1704335063 (0x659616d7)
    Port ID: 4332
    Status: 0
> Event: New Station (0x13) len 148                                   47.158495
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 2 (0x00000002)
    Station Info: len 0
    Information Elements: len 112
        SSID: RuneAudioAP
            52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
        Supported rates:
            1.0 2.0 5.5 11.0 6.0 9.0 12.0 18.0 Mbit/s
            02 04 0b 16 0c 12 18 24                          .......$        
        Extended supported rates:
            24.0 36.0 48.0 54.0 Mbit/s
            30 48 60 6c                                      0H`l            
        Tag 33: len 2
            00 16                                            ..              
        Tag 36: len 28
            01 01 02 01 03 01 04 01 05 01 06 01 07 01 08 01  ................
            09 01 0a 01 0b 01 0c 01 0d 01 0e 01              ............    
        RSN:
            Group Data Cipher Suite: len 4
                CCMP (00:0f:ac) suite  04
            Pairwise Cipher Suite: len 4
                CCMP (00:0f:ac) suite  04
            AKM Suite: len 4
                PSK; RSNA PSK (00:0f:ac) suite  02
            RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
            RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
            01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
            ac 02 00 00                                      ....            
        RM Enabled Capabilities: len 5
            Enabled: bit  4: Beacon Passive Measurement
            Enabled: bit  5: Beacon Active Measurement
            Enabled: bit  6: Beacon Table Measurement
            Operating Channel Max Measurement Duration: 0
            Non-Operating Channel Max Measurement Duration: 0
            Measurement Pilot Capability: 0
            70 00 00 00 00                                   p....           
        Extended Capabilities: len 10
            Capability: bit  2: Extended channel switching
            Capability: bit 19: BSS transition
            Capability: bit 22: Multiple BSSID
            Capability: bit 23: Timing measurement
            Capability: bit 32: QoS Map
            Capability: bit 62: Opmode Notification
            Capability: bit 63: (null)
            04 00 c8 00 01 00 00 c0 01 21                    .........!      
        Vendor specific: len 6
            OUI: 00:17:35 type:08
            00 17 35 08 01 00                                ..5...          
< Request: Set Station (0x12) len 32 [ack]                            47.158714
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags 2: len 8
        Mask: 0x00000002
            Authorized
        Set: 0x00000000
> Response: Set Station (0x12) len 4 [root]                           47.160224
    Status: Success (0)
< Request: Get Key (0x09) len 16 [ack]                                47.160340
    Interface Index: 4 (0x00000004)
    Key Index: 1 (0x01)
> Result: New Key (0x0b) len 44                                       47.160913
    Interface Index: 4 (0x00000004)
    Key Index: 1 (0x01)
    Key Cipher: BIP (00:0f:ac) suite  06
    Key: len 16
        Key Cipher: BIP (00:0f:ac) suite  06
        Key Index: 1 (0x01)
> Response: Get Key (0x09) len 4 [0x100]                              47.160930
    Status: Success (0)
< PAE: len 121                                                        47.161363
    Interface Index: 4
    EAPoL: len 121
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 117
        Descriptor Type: 2
        Key MIC: false
        Secure: false
        Error: false
        Request: false
        Encrypted Key Data: false
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: false
        Key ACK: true
        Key Length: 16
        Key Replay Counter: 1
        Key NONCE
            d7 c1 98 04 9a 10 04 58 07 a9 80 44 35 1c 0b ee  .......X...D5...
            cc 07 1e 50 a2 fb ca 54 8d bd 84 ff 09 b0 06 34  ...P...T.......4
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key Data: len 22
            Vendor specific: len 20
                IEEE 802.11 (00:0f:ac) type: 04
                PMKID KDE
                00 0f ac 04 3b 14 ee 30 c8 5e 17 04 f4 7b 82 33  ....;..0.^...{.3
                72 91 2e 27                                      r..'            
        02 03 00 75 02 00 8a 00 10 00 00 00 00 00 00 00  ...u............
        01 d7 c1 98 04 9a 10 04 58 07 a9 80 44 35 1c 0b  ........X...D5..
        ee cc 07 1e 50 a2 fb ca 54 8d bd 84 ff 09 b0 06  ....P...T.......
        34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  4...............
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 16 dd 14 00 0f ac 04 3b 14 ee 30 c8 5e 17  .........;..0.^.
        04 f4 7b 82 33 72 91 2e 27                       ..{.3r..'       
> PAE: len 121                                                        47.169576
    Interface Index: 4
    EAPoL: len 121
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 117
        Descriptor Type: 2
        Key MIC: true
        Secure: false
        Error: false
        Request: false
        Encrypted Key Data: false
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: false
        Key ACK: false
        Key Length: 0
        Key Replay Counter: 1
        Key NONCE
            8e 5d 39 4f e1 54 57 1a 65 95 15 df f8 90 ea 51  .]9O.TW.e......Q
            f1 fb 37 81 42 b7 54 db 20 89 7e 0c c5 39 14 6a  ..7.B.T. .~..9.j
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            24 f8 df 6c 45 70 b9 4d ed 35 da d5 9e 69 55 2f  $..lEp.M.5...iU/
        Key Data: len 22
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        02 03 00 75 02 01 0a 00 00 00 00 00 00 00 00 00  ...u............
        01 8e 5d 39 4f e1 54 57 1a 65 95 15 df f8 90 ea  ..]9O.TW.e......
        51 f1 fb 37 81 42 b7 54 db 20 89 7e 0c c5 39 14  Q..7.B.T. .~..9.
        6a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  j...............
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 24 f8 df 6c 45 70 b9 4d ed 35 da d5 9e 69 55  .$..lEp.M.5...iU
        2f 00 16 30 14 01 00 00 0f ac 04 01 00 00 0f ac  /..0............
        04 01 00 00 0f ac 02 00 00                       .........       
< PAE: len 155                                                        47.171369
    Interface Index: 4
    EAPoL: len 155
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 151
        Descriptor Type: 2
        Key MIC: true
        Secure: true
        Error: false
        Request: false
        Encrypted Key Data: true
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: true
        Key ACK: true
        Key Length: 16
        Key Replay Counter: 2
        Key NONCE
            d7 c1 98 04 9a 10 04 58 07 a9 80 44 35 1c 0b ee  .......X...D5...
            cc 07 1e 50 a2 fb ca 54 8d bd 84 ff 09 b0 06 34  ...P...T.......4
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            9e 71 e9 d3 a7 27 c0 30 b4 6c 95 e8 4b f9 3d 39  .q...'.0.l..K.=9
        Key Data: len 56
            c7 1a a5 ae 68 b6 48 60 cb 0a d5 12 b7 11 14 76  ....h.H`.......v
            f7 55 96 3a ee 6e cb c6 b2 9c 49 eb b7 f9 4c ab  .U.:.n....I...L.
            dc 91 6c 4d da 17 58 0a 59 3b f7 97 80 1a 82 60  ..lM..X.Y;.....`
            d3 a3 ea 9d 71 4a ac c1                          ....qJ..        
        02 03 00 97 02 13 ca 00 10 00 00 00 00 00 00 00  ................
        02 d7 c1 98 04 9a 10 04 58 07 a9 80 44 35 1c 0b  ........X...D5..
        ee cc 07 1e 50 a2 fb ca 54 8d bd 84 ff 09 b0 06  ....P...T.......
        34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  4...............
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 9e 71 e9 d3 a7 27 c0 30 b4 6c 95 e8 4b f9 3d  ..q...'.0.l..K.=
        39 00 38 c7 1a a5 ae 68 b6 48 60 cb 0a d5 12 b7  9.8....h.H`.....
        11 14 76 f7 55 96 3a ee 6e cb c6 b2 9c 49 eb b7  ..v.U.:.n....I..
        f9 4c ab dc 91 6c 4d da 17 58 0a 59 3b f7 97 80  .L...lM..X.Y;...
        1a 82 60 d3 a3 ea 9d 71 4a ac c1                 ..`....qJ..     
> PAE: len 99                                                         47.209092
    Interface Index: 4
    EAPoL: len 99
        Protocol Version: 2 (802.1X-2004)
        Type: 3 (Key)
        Length: 95
        Descriptor Type: 2
        Key MIC: true
        Secure: true
        Error: false
        Request: false
        Encrypted Key Data: false
        SMK Message: false
        Key Descriptor Version: 2 (02)
        Key Type: true
        Install: false
        Key ACK: false
        Key Length: 0
        Key Replay Counter: 2
        Key NONCE
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key IV
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Key RSC 
            00 00 00 00 00 00 00 00                          ........        
        Key MIC Data
            76 89 31 13 e6 74 a8 5b be 81 84 cf f4 78 3d 24  v.1..t.[.....x=$
        Key Data: len 0
        02 03 00 5f 02 03 0a 00 00 00 00 00 00 00 00 00  ..._............
        02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        00 76 89 31 13 e6 74 a8 5b be 81 84 cf f4 78 3d  .v.1..t.[.....x=
        24 00 00                                         $..             
< Request: New Key (0x0b) len 56 [ack]                                47.209525
    Key Data: len 16
        42 07 06 5e 7a 45 9c 73 56 6c f1 a3 39 3f 9d 5d  B..^zE.sVl..9?.]
    Key Cipher: CCMP (00:0f:ac) suite  04
    MAC Address 50:84:92:A6:7A:7A
    Key Index: 0 (0x00)
    Interface Index: 4 (0x00000004)
> Response: New Key (0x0b) len 4 [0x100]                              47.210283
    Status: Success (0)
< Request: Set Station (0x12) len 32 [ack]                            47.210368
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Station Flags 2: len 8
        Mask: 0x00000002
            Authorized
        Set: 0x00000002
            Authorized
> Response: Set Station (0x12) len 4 [root]                           47.210755
    Status: Success (0)
> RTNL: New Address (0x14) len 60 [multi]                             51.578529
    Flags: 2 (0x002)
    Sequence number: 1704335069 (0x659616dd)
    Port ID: 4406
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             51.578586
    Flags: 2 (0x002)
    Sequence number: 1704335069 (0x659616dd)
    Port ID: 4406
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     51.578615
    Flags: 2 (0x002)
    Sequence number: 1704335069 (0x659616dd)
    Port ID: 4406
    Status: 0
> RTNL: New Route (0x18) len 36 [multi,0x20]                          70.970838
    Flags: 34 (0x022)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4638
    RTM Family: AF_INET
    RTM Destination Len: 0
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: global
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Gateway: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                          70.970838
    Flags: 34 (0x022)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4638
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.0
        Preferred Source: 192.168.1.212
        Output Interface Index: 2
> RTNL: New Route (0x18) len 36 [multi,0x20]                          70.970838
    Flags: 34 (0x022)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4638
    RTM Family: AF_INET
    RTM Destination Len: 32
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                          70.970838
    Flags: 34 (0x022)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4638
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.5.0
        Preferred Source: 192.168.5.1
        Output Interface Index: 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                70.970868
    Flags: 34 (0x022)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4638
    Status: 0
< RTNL: Get Link (0x12) len 24 [request]                              70.971210
    Flags: 1 (0x001)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                      70.971258
    Flags: 0 (0x000)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 2344771270
< RTNL: Get Link (0x12) len 24 [request]                              70.971558
    Flags: 1 (0x001)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 1044                                      70.971591
    Flags: 0 (0x000)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 2396175994
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            09 01 00 00 78 00 00 00 74 6d 00 00 fe 45 00 00  ....x...tm...E..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            54 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  T...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: Get Link (0x12) len 24 [request,dump]                         70.985473
    Flags: 769 (0x301)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                              70.985593
    Flags: 2 (0x002)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4641
> RTNL: New Link (0x10) len 1424 [multi]                              70.985593
    Flags: 2 (0x002)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4641
> RTNL: New Link (0x10) len 1428 [multi]                              70.985662
    Flags: 2 (0x002)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4641
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                              70.985662
    Flags: 2 (0x002)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4641
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            09 01 00 00 78 00 00 00 74 6d 00 00 fe 45 00 00  ....x...tm...E..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            54 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  T...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                              70.985840
    Flags: 2 (0x002)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4641
> RTNL: Done (0x03) len 4 [multi]                                     70.985916
    Flags: 2 (0x002)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4641
    Status: 0
< RTNL: New Link (0x10) len 16 [request,ack]                          70.998356
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                           70.998402
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 4644
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                              70.998566
    Flags: 1 (0x001)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                      70.998616
    Flags: 0 (0x000)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 3673586000
< RTNL: New Link (0x10) len 16 [request,ack]                          70.998830
    Flags: 5 (0x005)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                   70.998976
    Flags: 256 (0x100)
    Sequence number: 1704335089 (0x659616f1)
    Port ID: 4644
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                          71.015053
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                           71.015124
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 4646
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                              71.015296
    Flags: 1 (0x001)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 0
> RTNL: New Link (0x10) len 1048                                      71.015364
    Flags: 0 (0x000)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4205087859
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                          71.015632
    Flags: 5 (0x005)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                   71.015723
    Flags: 256 (0x100)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4646
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                          71.028454
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                           71.028503
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 4648
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 32 [request]                              71.028668
    Flags: 1 (0x001)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                      71.028716
    Flags: 0 (0x000)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 3872065306
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            09 01 00 00 78 00 00 00 74 6d 00 00 fe 45 00 00  ....x...tm...E..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            54 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  T...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                          71.028931
    Flags: 5 (0x005)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                   71.029026
    Flags: 256 (0x100)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4648
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                          71.040969
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                           71.041016
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 4650
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                              71.041174
    Flags: 1 (0x001)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 0
> RTNL: New Link (0x10) len 988                                       71.041223
    Flags: 0 (0x000)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 2861521188
< RTNL: New Link (0x10) len 16 [request,ack]                          71.041421
    Flags: 5 (0x005)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                   71.041443
    Flags: 256 (0x100)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4650
    ACK: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                         71.052914
    Flags: 769 (0x301)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                              71.053033
    Flags: 2 (0x002)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4652
> RTNL: New Link (0x10) len 1424 [multi]                              71.053033
    Flags: 2 (0x002)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4652
> RTNL: New Link (0x10) len 1428 [multi]                              71.053096
    Flags: 2 (0x002)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4652
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                              71.053096
    Flags: 2 (0x002)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4652
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            09 01 00 00 78 00 00 00 74 6d 00 00 fe 45 00 00  ....x...tm...E..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            54 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  T...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                              71.053221
    Flags: 2 (0x002)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4652
> RTNL: Done (0x03) len 4 [multi]                                     71.053291
    Flags: 2 (0x002)
    Sequence number: 1704335090 (0x659616f2)
    Port ID: 4652
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             71.053441
    Flags: 2 (0x002)
    Sequence number: 1704335091 (0x659616f3)
    Port ID: 4652
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             71.053490
    Flags: 2 (0x002)
    Sequence number: 1704335091 (0x659616f3)
    Port ID: 4652
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     71.053518
    Flags: 2 (0x002)
    Sequence number: 1704335091 (0x659616f3)
    Port ID: 4652
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                     71.123178
> Result: New Interface (0x07) len 136 [multi]                        71.124785
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Result: New Interface (0x07) len 124 [multi]                        71.124785
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Complete: Get Interface (0x05) len 4 [multi]                        71.124849
    Status: 0
< Request: Get Station (0x11) len 8 [ack,0x300]                       71.154027
    Interface Index: 4 (0x00000004)
> Result: New Station (0x13) len 164 [multi]                          71.156114
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 0 (0x00000000)
    Station Info: len 132
        Connected time: 23 (0x00000017)
        Inactivity time: 0 (0x00000000)
        Total RX bytes: 29595 (0x0000739b)
        Total TX bytes: 27643 (0x00006bfb)
        TX bitrate: len 16
            Bit Rate: 540 (0x0000021c)
            Bit Rate (Legacy): 540 (0x021c)
        RX bitrate: len 16
            Bit Rate: 60 (0x0000003c)
            Bit Rate (Legacy): 60 (0x003c)
        RX packets: 194 (0x000000c2)
        TX packets: 168 (0x000000a8)
        TX failed: 0 (0x00000000)
        BSS parameters: len 20
            Short Slot Time: true
            DTIM Period: 3 (0x03)
            Beacon Interval: 100 (0x0064)
        Station flags: len 8
            Mask: 0x000000ea
                Authorized
                WME
                Authenticated
                TDLS-Peer
                Associated
            Set: 0x000000e2
                Authorized
                Authenticated
                TDLS-Peer
                Associated
> Complete: Get Station (0x11) len 4 [multi]                          71.156205
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                         71.165971
    Interface Index: 4 (0x00000004)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                       71.166003
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                          71.176176
    Interface Index: 4 (0x00000004)
> Result: Get Power Save (0x3e) len 8                                 71.176204
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                       71.176216
    Status: Success (0)
< Request: Trigger Scan (0x21) len 64 [ack]                           71.198123
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                   71.199276
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                         71.199309
    Status: Success (0)
< Request: Get Station (0x11) len 8 [ack,0x300]                       71.211592
    Interface Index: 3 (0x00000003)
> Complete: Get Station (0x11) len 4 [multi]                          71.212289
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                         71.223843
    Interface Index: 3 (0x00000003)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                       71.223874
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                          71.234104
    Interface Index: 3 (0x00000003)
> Result: Get Power Save (0x3e) len 8                                 71.234148
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                       71.234164
    Status: Success (0)
< Request: Get Protocol Features (0x5f) len 0 [ack]                   71.271181
> Result: Get Protocol Features (0x5f) len 8                          71.271230
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]                71.271248
    Status: Success (0)
< Request: Get Wiphy (0x01) len 4 [ack,0x300]                         71.271347
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                            71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                            71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                            71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                            71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                            71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                           71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                             71.271488
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                            71.271552
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                   71.284862
> Result: Get Protocol Features (0x5f) len 8                          71.284898
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]                71.284911
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                        71.284994
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                            71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                            71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                            71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                            71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                            71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                           71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                             71.285146
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                            71.285199
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                   71.297279
> Result: Get Protocol Features (0x5f) len 8                          71.297313
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]                71.297327
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                        71.297406
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                            71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                            71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                            71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                            71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                            71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                           71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                             71.297550
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                            71.297610
    Status: 0
> Event: New Scan Results (0x22) len 84                               71.612130
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                        71.612202
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        71.612224
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        71.612239
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        71.612257
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        71.612276
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                         71.613847
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                     71.614090
    Generation: 634 (0x0000027a)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 274550183696 (0x0000003fec775710)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                     71.614090
    Generation: 634 (0x0000027a)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 274550204841 (0x0000003fec77a9a9)
        Signal mBm: -6500
> Complete: Get Scan (0x20) len 4 [multi]                             71.614758
    Status: 0
< Request: Trigger Scan (0x21) len 248 [ack]                          71.616581
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                  71.617844
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                         71.617893
    Status: Success (0)
> Event: New Scan Results (0x22) len 268                              77.256677
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                        77.256733
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        77.256751
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        77.256773
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        77.256796
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        77.256817
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                         77.257012
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194602583 (0x000000413ce65657)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 428 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194613416 (0x000000413ce680a8)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 392 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194562999 (0x000000413ce5bbb7)
        Signal mBm: -6200
> Result: New Scan Results (0x22) len 480 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194580499 (0x000000413ce60013)
        Signal mBm: -6200
> Result: New Scan Results (0x22) len 380 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 59/255 available capacity 0 32µs/s units
                00 00 3b 00 00                                   ..;..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194589145 (0x000000413ce621d9)
        Signal mBm: -3800
> Result: New Scan Results (0x22) len 372 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 57/255 available capacity 0 32µs/s units
                00 00 39 00 00                                   ..9..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194596176 (0x000000413ce63d50)
        Signal mBm: -6000
> Result: New Scan Results (0x22) len 372 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 36/255 available capacity 0 32µs/s units
                02 00 24 00 00                                   ..$..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                04 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194620968 (0x000000413ce69e28)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 384 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 24/255 available capacity 0 32µs/s units
                01 00 18 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194627218 (0x000000413ce6b692)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 240 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                04 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194632791 (0x000000413ce6cc57)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 460 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 60/255 available capacity 0 32µs/s units
                02 00 3c 00 00                                   ..<..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194639145 (0x000000413ce6e529)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 460 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 34/255 available capacity 0 32µs/s units
                01 00 22 00 00                                   .."..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194664249 (0x000000413ce74739)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 460 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 60/255 available capacity 0 32µs/s units
                02 00 3c 00 00                                   ..<..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194673207 (0x000000413ce76a37)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 428 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 30/255 available capacity 65535 32µs/s units
                00 00 1e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194684145 (0x000000413ce794f1)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 524 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194700030 (0x000000413ce7d2fe)
        Signal mBm: -8900
> Result: New Scan Results (0x22) len 556 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194708103 (0x000000413ce7f287)
        Signal mBm: -9000
> Result: New Scan Results (0x22) len 492 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 30/255 available capacity 65535 32µs/s units
                06 00 1e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194720603 (0x000000413ce8235b)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 440 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194728780 (0x000000413ce8434c)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 452 [multi]                     77.257140
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194736541 (0x000000413ce8619d)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 488 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194744666 (0x000000413ce8815a)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 452 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194753051 (0x000000413ce8a21b)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 452 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194761280 (0x000000413ce8c240)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 516 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194770030 (0x000000413ce8e46e)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 556 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194793624 (0x000000413ce94098)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 428 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 12/255 available capacity 65535 32µs/s units
                00 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194802061 (0x000000413ce9618d)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 492 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 12/255 available capacity 65535 32µs/s units
                05 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194810499 (0x000000413ce98283)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 412 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194819249 (0x000000413ce9a4b1)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 6/255 available capacity 0 32µs/s units
                02 00 06 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194834666 (0x000000413ce9e0ea)
        Signal mBm: -4200
> Result: New Scan Results (0x22) len 472 [multi]                     77.257226
    Generation: 662 (0x00000296)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 13/255 available capacity 65535 32µs/s units
                02 00 0d ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 280194850343 (0x000000413cea1e27)
        Signal mBm: -6200
> Complete: Get Scan (0x20) len 4 [multi]                             77.257484
    Status: 0
< Request: Trigger Scan (0x21) len 128 [ack]                          77.259055
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                  77.266276
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                         77.266309
    Status: Success (0)
> Event: New Scan Results (0x22) len 148                              82.896749
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                        82.896809
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        82.896827
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        82.896845
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        82.896866
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        82.896893
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                         82.897072
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834689774 (0x000000428d133cee)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834697587 (0x000000428d135b73)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 392 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834661962 (0x000000428d12d04a)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 480 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834643003 (0x000000428d12863b)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 380 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 39/255 available capacity 0 32µs/s units
                00 00 27 00 00                                   ..'..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834682274 (0x000000428d131fa2)
        Signal mBm: -3100
> Result: New Scan Results (0x22) len 372 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 63/255 available capacity 0 32µs/s units
                00 00 3f 00 00                                   ..?..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834670399 (0x000000428d12f13f)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 372 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 36/255 available capacity 0 32µs/s units
                02 00 24 00 00                                   ..$..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834710034 (0x000000428d138c12)
        Signal mBm: -4500
> Result: New Scan Results (0x22) len 384 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 20/255 available capacity 0 32µs/s units
                01 00 14 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834725295 (0x000000428d13c7af)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 240 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                04 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834717691 (0x000000428d13a9fb)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 460 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 84/255 available capacity 0 32µs/s units
                01 00 54 00 00                                   ..T..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834752899 (0x000000428d143383)
        Signal mBm: -4500
> Result: New Scan Results (0x22) len 460 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 62/255 available capacity 0 32µs/s units
                02 00 3e 00 00                                   ..>..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834762899 (0x000000428d145a93)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 428 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 46/255 available capacity 65535 32µs/s units
                00 00 2e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834793420 (0x000000428d14d1cc)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 492 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 10000000 
                02 03 00 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 46/255 available capacity 65535 32µs/s units
                06 00 2e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834802534 (0x000000428d14f566)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 440 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834812795 (0x000000428d151d7b)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 452 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834780034 (0x000000428d149d82)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 516 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834835191 (0x000000428d1574f7)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 556 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834847899 (0x000000428d15a69b)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 428 [multi]                     82.897176
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 10/255 available capacity 65535 32µs/s units
                00 00 0a ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834857691 (0x000000428d15ccdb)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 492 [multi]                     82.897250
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 10/255 available capacity 65535 32µs/s units
                05 00 0a ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834867847 (0x000000428d15f487)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 412 [multi]                     82.897250
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834877951 (0x000000428d161bff)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                     82.897250
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 9/255 available capacity 0 32µs/s units
                02 00 09 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834895086 (0x000000428d165eee)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 472 [multi]                     82.897250
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 30/255 available capacity 65535 32µs/s units
                02 00 1e ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834907899 (0x000000428d1690fb)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 452 [multi]                     82.897250
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834733211 (0x000000428d13e69b)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 488 [multi]                     82.897250
    Generation: 687 (0x000002af)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 37/255 available capacity 0 32µs/s units
                04 00 25 00 00                                   ..%..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 285834822951 (0x000000428d154527)
        Signal mBm: -7600
> Complete: Get Scan (0x20) len 4 [multi]                             82.897508
    Status: 0
< Request: Trigger Scan (0x21) len 352 [ack]                          82.899594
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
> Event: Trigger Scan (0x21) len 372                                  82.900816
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> Response: Trigger Scan (0x21) len 4 [0x100]                         82.900849
    Status: Success (0)
> Event: New Scan Results (0x22) len 372                              88.538722
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
< Request: Get Scan (0x20) len 12 [ack,0x300]                         88.538983
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476627536 (0x00000043dd5c6050)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 428 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5644 (0x0000160c)
        Timestamp: 285834697587 (0x000000428d135b73)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 392 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476603526 (0x00000043dd5c0286)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 480 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476576755 (0x00000043dd5b99f3)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 380 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 45/255 available capacity 0 32µs/s units
                00 00 2d 00 00                                   ..-..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476620088 (0x00000043dd5c4338)
        Signal mBm: -3100
> Result: New Scan Results (0x22) len 372 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 47/255 available capacity 0 32µs/s units
                00 00 2f 00 00                                   ../..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476611859 (0x00000043dd5c2313)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 372 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 50/255 available capacity 0 32µs/s units
                02 00 32 00 00                                   ..2..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476647692 (0x00000043dd5caf0c)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 384 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 15/255 available capacity 0 32µs/s units
                01 00 0f 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476635557 (0x00000043dd5c7fa5)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 240 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                04 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5644 (0x0000160c)
        Timestamp: 285834717691 (0x000000428d13a9fb)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 460 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 52/255 available capacity 0 32µs/s units
                01 00 34 00 00                                   ..4..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476673317 (0x00000043dd5d1325)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 460 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 62/255 available capacity 0 32µs/s units
                02 00 3e 00 00                                   ..>..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5644 (0x0000160c)
        Timestamp: 285834762899 (0x000000428d145a93)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 428 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 45/255 available capacity 65535 32µs/s units
                00 00 2d ff ff                                   ..-..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476692588 (0x00000043dd5d5e6c)
        Signal mBm: -4500
> Result: New Scan Results (0x22) len 492 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 45/255 available capacity 65535 32µs/s units
                06 00 2d ff ff                                   ..-..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476706495 (0x00000043dd5d94bf)
        Signal mBm: -4500
> Result: New Scan Results (0x22) len 440 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476716651 (0x00000043dd5dbc6b)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 452 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476752953 (0x00000043dd5e4a39)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 516 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476787640 (0x00000043dd5ed1b8)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 556 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476806026 (0x00000043dd5f198a)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 428 [multi]                     88.539069
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 23/255 available capacity 65535 32µs/s units
                00 00 17 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476820557 (0x00000043dd5f524d)
        Signal mBm: -6800
> RTNL: New Link (0x10) len 48                                        88.539071
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        88.539097
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        88.539112
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                        88.539135
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> Result: New Scan Results (0x22) len 492 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 5
                AID     1 -    8 00000100 
                02 03 0a 20                                      ...             
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 23/255 available capacity 65535 32µs/s units
                05 00 17 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476854411 (0x00000043dd5fd68b)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 412 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476864463 (0x00000043dd5ffdcf)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 484 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 34/255 available capacity 0 32µs/s units
                02 00 22 00 00                                   .."..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476881442 (0x00000043dd604022)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 472 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 23/255 available capacity 65535 32µs/s units
                02 00 17 ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476894359 (0x00000043dd607297)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 452 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476683109 (0x00000043dd5d3965)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 488 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 58/255 available capacity 0 32µs/s units
                04 00 3a 00 00                                   ..:..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476767797 (0x00000043dd5e8435)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 460 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 67/255 available capacity 0 32µs/s units
                02 00 43 00 00                                   ..C..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476656234 (0x00000043dd5cd06a)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476725922 (0x00000043dd5de0a2)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 488 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476733994 (0x00000043dd5e002a)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 452 [multi]                     88.539139
    Generation: 712 (0x000002c8)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 291476742536 (0x00000043dd5e2188)
        Signal mBm: -8400
> RTNL: New Link (0x10) len 48                                        88.539152
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> Complete: Get Scan (0x20) len 4 [multi]                             88.539397
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                         91.897637
    Flags: 769 (0x301)
    Sequence number: 1704335110 (0x65961706)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                              91.897816
    Flags: 2 (0x002)
    Sequence number: 1704335110 (0x65961706)
    Port ID: 4987
> RTNL: New Link (0x10) len 1424 [multi]                              91.897816
    Flags: 2 (0x002)
    Sequence number: 1704335110 (0x65961706)
    Port ID: 4987
> RTNL: New Link (0x10) len 1428 [multi]                              91.897884
    Flags: 2 (0x002)
    Sequence number: 1704335110 (0x65961706)
    Port ID: 4987
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                              91.897884
    Flags: 2 (0x002)
    Sequence number: 1704335110 (0x65961706)
    Port ID: 4987
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            36 01 00 00 ba 00 00 00 26 78 00 00 f2 23 01 00  6.......&x...#..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            56 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  V...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                              91.898016
    Flags: 2 (0x002)
    Sequence number: 1704335110 (0x65961706)
    Port ID: 4987
> RTNL: Done (0x03) len 4 [multi]                                     91.898100
    Flags: 2 (0x002)
    Sequence number: 1704335110 (0x65961706)
    Port ID: 4987
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                             91.898256
    Flags: 2 (0x002)
    Sequence number: 1704335111 (0x65961707)
    Port ID: 4987
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                             91.898306
    Flags: 2 (0x002)
    Sequence number: 1704335111 (0x65961707)
    Port ID: 4987
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                     91.898334
    Flags: 2 (0x002)
    Sequence number: 1704335111 (0x65961707)
    Port ID: 4987
    Status: 0
< Request: Get Reg (0x1f) len 0 [ack,0x300]                          136.076038
> Result: Get Reg (0x1f) len 492 [multi]                             136.076105
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                             136.076105
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                             136.076161
    Status: 0
< Request: Trigger Scan (0x21) len 352 [ack]                         248.539916
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
> Event: Trigger Scan (0x21) len 372                                 248.541315
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> Response: Trigger Scan (0x21) len 4 [0x100]                        248.541357
    Status: Success (0)
< Request: Get Reg (0x1f) len 0 [ack,0x300]                          250.436199
> Result: Get Reg (0x1f) len 492 [multi]                             250.436384
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                             250.436384
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                             250.436813
    Status: 0
> Event: Del Station (0x14) len 32                                   253.482598
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 0 (0x00000000)
    Station Info: len 0
> Event: Del Station (0x14) len 32                                   253.482762
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Generation: 0 (0x00000000)
    Station Info: len 0
< Request: Del Station (0x14) len 36 [ack]                           253.482931
    Interface Index: 4 (0x00000004)
    MAC Address 50:84:92:A6:7A:7A
    Management Subtype: 12 (0x0c)
    Reason Code: Unspecified reason
> Response: Del Station (0x14) len 4 [replace]                       253.483447
    Status: Success (0)
> Event: New Scan Results (0x22) len 372                             254.172806
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> RTNL: New Link (0x10) len 48                                       254.172879
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       254.172900
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       254.172916
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       254.172933
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       254.172953
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        254.173059
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110683470 (0x0000006a6deb7f4e)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 392 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110644720 (0x0000006a6deae7f0)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 480 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110663678 (0x0000006a6deb31fe)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 380 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 33/255 available capacity 0 32µs/s units
                00 00 21 00 00                                   ..!..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110671283 (0x0000006a6deb4fb3)
        Signal mBm: -3400
> Result: New Scan Results (0x22) len 372 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 56/255 available capacity 0 32µs/s units
                00 00 38 00 00                                   ..8..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110652741 (0x0000006a6deb0745)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 372 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 38/255 available capacity 0 32µs/s units
                02 00 26 00 00                                   ..&..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110625397 (0x0000006a6dea9c75)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 460 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 83/255 available capacity 0 32µs/s units
                01 00 53 00 00                                   ..S..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110696335 (0x0000006a6debb18f)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 460 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 79/255 available capacity 0 32µs/s units
                02 00 4f 00 00                                   ..O..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110729772 (0x0000006a6dec342c)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 428 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 52/255 available capacity 65535 32µs/s units
                00 00 34 ff ff                                   ..4..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110771126 (0x0000006a6decd5b6)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 504 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 472
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 376
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -   32 10000010 00000000 00000000 00000000 
                AID    33 -   64 00000000 00000000 00000000 00000000 
                AID    65 -   96 00000000 00000000 00000000 00000000 
                AID    97 -  104 01000000 
                00 03 01 41 00 00 00 00 00 00 00 00 00 00 00 02  ...A............
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 52/255 available capacity 65535 32µs/s units
                06 00 34 ff ff                                   ..4..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110794876 (0x0000006a6ded327c)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 440 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110804928 (0x0000006a6ded59c0)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 452 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110761230 (0x0000006a6decaf0e)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 516 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110852064 (0x0000006a6dee11e0)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 556 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110864876 (0x0000006a6dee43ec)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 428 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 12/255 available capacity 65535 32µs/s units
                00 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110880032 (0x0000006a6dee7f20)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 492 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 12/255 available capacity 65535 32µs/s units
                05 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110904303 (0x0000006a6deeddef)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 412 [multi]                    254.173175
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110914251 (0x0000006a6def04cb)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    254.173323
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 21/255 available capacity 0 32µs/s units
                02 00 15 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110931491 (0x0000006a6def4823)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    254.173323
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                00 02 00 08                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 28/255 available capacity 65535 32µs/s units
                02 00 1c ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 86 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110948782 (0x0000006a6def8bae)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 488 [multi]                    254.173323
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 37/255 available capacity 0 32µs/s units
                04 00 25 00 00                                   ..%..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110838678 (0x0000006a6deddd96)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 460 [multi]                    254.173323
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 68/255 available capacity 0 32µs/s units
                02 00 44 00 00                                   ..D..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110719616 (0x0000006a6dec0c80)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 452 [multi]                    254.173323
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110818835 (0x0000006a6ded9013)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 488 [multi]                    254.173323
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110828782 (0x0000006a6dedb6ee)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 452 [multi]                    254.173323
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110747324 (0x0000006a6dec78bc)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 524 [multi]                    254.173323
    Generation: 738 (0x000002e2)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 457110780137 (0x0000006a6decf8e9)
        Signal mBm: -8800
> Complete: Get Scan (0x20) len 4 [multi]                            254.173587
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        257.343219
    Flags: 769 (0x301)
    Sequence number: 1704335276 (0x659617ac)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             257.343416
    Flags: 2 (0x002)
    Sequence number: 1704335276 (0x659617ac)
    Port ID: 6726
> RTNL: New Link (0x10) len 1424 [multi]                             257.343416
    Flags: 2 (0x002)
    Sequence number: 1704335276 (0x659617ac)
    Port ID: 6726
> RTNL: New Link (0x10) len 1428 [multi]                             257.343490
    Flags: 2 (0x002)
    Sequence number: 1704335276 (0x659617ac)
    Port ID: 6726
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             257.343490
    Flags: 2 (0x002)
    Sequence number: 1704335276 (0x659617ac)
    Port ID: 6726
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 d9 00 00 00 ae 7f 00 00 54 41 01 00  N...........TA..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             257.343613
    Flags: 2 (0x002)
    Sequence number: 1704335276 (0x659617ac)
    Port ID: 6726
> RTNL: Done (0x03) len 4 [multi]                                    257.343692
    Flags: 2 (0x002)
    Sequence number: 1704335276 (0x659617ac)
    Port ID: 6726
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            257.343844
    Flags: 2 (0x002)
    Sequence number: 1704335277 (0x659617ad)
    Port ID: 6726
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            257.343908
    Flags: 2 (0x002)
    Sequence number: 1704335277 (0x659617ad)
    Port ID: 6726
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    257.343947
    Flags: 2 (0x002)
    Sequence number: 1704335277 (0x659617ad)
    Port ID: 6726
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                    257.380640
> Result: New Interface (0x07) len 136 [multi]                       257.382551
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Result: New Interface (0x07) len 124 [multi]                       257.382551
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Complete: Get Interface (0x05) len 4 [multi]                       257.382617
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                          257.400565
    Interface Index: 4 (0x00000004)
> Result: New Interface (0x07) len 136                               257.401467
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Response: Get Interface (0x05) len 4 [0x100]                       257.401499
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          257.415178
    Interface Index: 3 (0x00000003)
> Result: New Interface (0x07) len 124                               257.416375
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Response: Get Interface (0x05) len 4 [0x100]                       257.416404
    Status: Success (0)
< Request: Trigger Scan (0x21) len 64 [ack]                          257.439482
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                  257.440565
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        257.440735
    Status: Success (0)
> Event: New Scan Results (0x22) len 84                              257.854382
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       257.854432
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       257.854449
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       257.854463
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       257.854487
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       257.854503
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        257.854999
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    257.855069
    Generation: 742 (0x000002e6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 460792498220 (0x0000006b495f882c)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 396 [multi]                    257.855069
    Generation: 742 (0x000002e6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00100000 
                00 02 01 04                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 460792470980 (0x0000006b495f1dc4)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 428 [multi]                    257.855069
    Generation: 742 (0x000002e6)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 460792508480 (0x0000006b495fb040)
        Signal mBm: -6700
> Complete: Get Scan (0x20) len 4 [multi]                            257.855118
    Status: 0
< Request: Trigger Scan (0x21) len 248 [ack]                         257.856297
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                 257.857457
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        257.857496
    Status: Success (0)
> Event: New Scan Results (0x22) len 268                             263.492934
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       263.492995
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       263.493014
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       263.493029
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       263.493046
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       263.493062
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        263.493330
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5636 (0x00001604)
        Timestamp: 460792498220 (0x0000006b495f882c)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 396 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00100000 
                00 02 01 04                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5636 (0x00001604)
        Timestamp: 460792470980 (0x0000006b495f1dc4)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 428 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430821371 (0x0000006c997183fb)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 372 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430722621 (0x0000006c9970023d)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 372 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 29/255 available capacity 0 32µs/s units
                02 00 1d 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430739132 (0x0000006c997042bc)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 392 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430745017 (0x0000006c997059b9)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 388 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 67/255 available capacity 0 32µs/s units
                00 00 43 00 00                                   ..C..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430751892 (0x0000006c99707494)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 372 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID C0:89:AB:BC:03:B0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTBUimK8s
                41 54 54 42 55 69 6d 4b 38 73                    ATTBUimK8s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 26 dB link margin  0 dB
                1a 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  3 station(s) utilization 53/255 available capacity 0 32µs/s units
                03 00 35 00 00                                   ..5..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                07 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 03 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430763819 (0x0000006c9970a32b)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 372 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 57/255 available capacity 0 32µs/s units
                00 00 39 00 00                                   ..9..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430779965 (0x0000006c9970e23d)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 380 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 36/255 available capacity 0 32µs/s units
                00 00 24 00 00                                   ..$..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430786371 (0x0000006c9970fb43)
        Signal mBm: -3500
> Result: New Scan Results (0x22) len 480 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430792361 (0x0000006c997112a9)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 396 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430798819 (0x0000006c99712be3)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 440 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 71/255 available capacity 31250 32µs/s units
                02 00 47 12 7a                                   ..G.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430804288 (0x0000006c99714140)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 404 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430814965 (0x0000006c99716af5)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 304 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID 58:2F:F7:67:7C:2E
        TSF: 0 (0x0000000000000000)
        IEs: len 175
            SSID: BingoBango
                42 69 6e 67 6f 42 61 6e 67 6f                    BingoBango      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            BSS load:  0 station(s) utilization 45/255 available capacity 0 32µs/s units
                00 00 2d 00 00                                   ..-..           
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 00 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 00 17 ff ff ff 00 00 00 00 00 00 00 00 00 00  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                04 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 10 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430831423 (0x0000006c9971ab3f)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 376 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 125/255 available capacity 0 32µs/s units
                00 00 7d 00 00                                   ..}..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430837100 (0x0000006c9971c16c)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 384 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 83/255 available capacity 0 32µs/s units
                01 00 53 00 00                                   ..S..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430847256 (0x0000006c9971e918)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 356 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430861996 (0x0000006c997222ac)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 240 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430872517 (0x0000006c99724bc5)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 384 [multi]                    263.493439
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 64/255 available capacity 0 32µs/s units
                02 00 40 00 00                                   ..@..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430886944 (0x0000006c99728420)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 384 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 23/255 available capacity 0 32µs/s units
                01 00 17 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430903350 (0x0000006c9972c436)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 384 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 256
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 1
                AID     1 -   16 00000000 10000000 
                00 03 03 00 01                                   .....           
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 33/255 available capacity 0 32µs/s units
                02 00 21 00 00                                   ..!..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430909184 (0x0000006c9972db00)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 460 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 58/255 available capacity 0 32µs/s units
                01 00 3a 00 00                                   ..:..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430920538 (0x0000006c9973075a)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 460 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 53/255 available capacity 0 32µs/s units
                02 00 35 00 00                                   ..5..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430939131 (0x0000006c99734ffb)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 460 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 67/255 available capacity 0 32µs/s units
                02 00 43 00 00                                   ..C..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430947673 (0x0000006c99737159)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 452 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466430975902 (0x0000006c9973df9e)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 452 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431000954 (0x0000006c9974417a)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 428 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 47/255 available capacity 65535 32µs/s units
                00 00 2f ff ff                                   ../..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431009183 (0x0000006c9974619f)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 492 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 47/255 available capacity 65535 32µs/s units
                06 00 2f ff ff                                   ../..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431017413 (0x0000006c997481c5)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 440 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431029861 (0x0000006c9974b265)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 452 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431037933 (0x0000006c9974d1ed)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 488 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431045746 (0x0000006c9974f072)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 516 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431054808 (0x0000006c997513d8)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 556 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431066319 (0x0000006c997540cf)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 428 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 16/255 available capacity 65535 32µs/s units
                00 00 10 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431074548 (0x0000006c997560f4)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 492 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 10000000 
                00 03 01 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 16/255 available capacity 65535 32µs/s units
                05 00 10 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431083350 (0x0000006c99758356)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 412 [multi]                    263.493534
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01111000 
                00 01 00 1e                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 466431091319 (0x0000006c9975a277)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    263.493840
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 24/255 available capacity 0 32µs/s units
                02 00 18 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 466431102673 (0x0000006c9975ced1)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    263.493840
    Generation: 779 (0x0000030b)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 36/255 available capacity 65535 32µs/s units
                02 00 24 ff ff                                   ..$..           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 86 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 466431113975 (0x0000006c9975faf7)
        Signal mBm: -6700
> Complete: Get Scan (0x20) len 4 [multi]                            263.494084
    Status: 0
< Request: Trigger Scan (0x21) len 128 [ack]                         263.496317
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                 263.497446
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        263.497485
    Status: Success (0)
> Event: New Scan Results (0x22) len 148                             269.134545
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       269.134607
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       269.134629
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       269.134644
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       269.134662
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       269.134681
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        269.134891
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072348948 (0x0000006de9b46514)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 396 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00100000 
                01 02 00 04                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072393479 (0x0000006de9b51307)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 428 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072364625 (0x0000006de9b4a251)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 372 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072310042 (0x0000006de9b3cd1a)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 372 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 44/255 available capacity 0 32µs/s units
                02 00 2c 00 00                                   ..,..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072442542 (0x0000006de9b5d2ae)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 392 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072294625 (0x0000006de9b390e1)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 388 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 98/255 available capacity 0 32µs/s units
                00 00 62 00 00                                   ..b..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072255146 (0x0000006de9b2f6aa)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 372 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID C0:89:AB:BC:03:B0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTBUimK8s
                41 54 54 42 55 69 6d 4b 38 73                    ATTBUimK8s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  3 station(s) utilization 55/255 available capacity 0 32µs/s units
                03 00 37 00 00                                   ..7..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                07 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 03 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072276708 (0x0000006de9b34ae4)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 372 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 59/255 available capacity 0 32µs/s units
                00 00 3b 00 00                                   ..;..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072301969 (0x0000006de9b3ad91)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 380 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 48/255 available capacity 0 32µs/s units
                00 00 30 00 00                                   ..0..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072317333 (0x0000006de9b3e995)
        Signal mBm: -3300
> Result: New Scan Results (0x22) len 480 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072285979 (0x0000006de9b36f1b)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 396 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072325510 (0x0000006de9b40986)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 440 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 68/255 available capacity 31250 32µs/s units
                02 00 44 12 7a                                   ..D.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072332698 (0x0000006de9b4259a)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 404 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072340927 (0x0000006de9b445bf)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 304 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID 58:2F:F7:67:7C:2E
        TSF: 0 (0x0000000000000000)
        IEs: len 175
            SSID: BingoBango
                42 69 6e 67 6f 42 61 6e 67 6f                    BingoBango      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            BSS load:  0 station(s) utilization 41/255 available capacity 0 32µs/s units
                00 00 29 00 00                                   ..)..           
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 00 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 00 17 ff ff ff 00 00 00 00 00 00 00 00 00 00  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                04 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 10 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072414625 (0x0000006de9b565a1)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 376 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 80/255 available capacity 0 32µs/s units
                00 00 50 00 00                                   ..P..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072425927 (0x0000006de9b591c7)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 356 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072449937 (0x0000006de9b5ef91)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 240 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                01 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072435354 (0x0000006de9b5b69a)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 384 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 32/255 available capacity 0 32µs/s units
                02 00 20 00 00                                   .. ..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072469729 (0x0000006de9b63ce1)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 384 [multi]                    269.135016
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 47/255 available capacity 0 32µs/s units
                02 00 2f 00 00                                   ../..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072461864 (0x0000006de9b61e28)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 460 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 52/255 available capacity 0 32µs/s units
                01 00 34 00 00                                   ..4..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072482906 (0x0000006de9b6705a)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 460 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 58/255 available capacity 0 32µs/s units
                02 00 3a 00 00                                   ..:..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072512281 (0x0000006de9b6e319)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 460 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 55/255 available capacity 0 32µs/s units
                02 00 37 00 00                                   ..7..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072522333 (0x0000006de9b70a5d)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 452 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072535823 (0x0000006de9b73f0f)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 452 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072550562 (0x0000006de9b778a2)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 428 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 58/255 available capacity 65535 32µs/s units
                00 00 3a ff ff                                   ..:..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072559885 (0x0000006de9b79d0d)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 492 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 6
                AID     1 -    8 01000000 
                01 03 0c 02                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 58/255 available capacity 65535 32µs/s units
                06 00 3a ff ff                                   ..:..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072568791 (0x0000006de9b7bfd7)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 440 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072578844 (0x0000006de9b7e71c)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 452 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072588427 (0x0000006de9b80c8b)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 488 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072598062 (0x0000006de9b8322e)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 516 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072620718 (0x0000006de9b88aae)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 556 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072638010 (0x0000006de9b8ce3a)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 428 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 14/255 available capacity 65535 32µs/s units
                00 00 0e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072647437 (0x0000006de9b8f30d)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 492 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 14/255 available capacity 65535 32µs/s units
                05 00 0e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072657125 (0x0000006de9b918e5)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 412 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072666812 (0x0000006de9b93ebc)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    269.135109
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 25/255 available capacity 0 32µs/s units
                02 00 19 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072679521 (0x0000006de9b97061)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    269.135374
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 21/255 available capacity 65535 32µs/s units
                02 00 15 ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 86 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072703739 (0x0000006de9b9cefb)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 304 [multi]                    269.135374
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID AC:F1:08:CB:9C:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 176
            SSID: AT_301_WLRGL5821S_9cd8
                41 54 5f 33 30 31 5f 57 4c 52 47 4c 35 38 32 31  AT_301_WLRGL5821
                53 5f 39 63 64 38                                S_9cd8          
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Static
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 1
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                20 00 1d ff 00 00 00 00 00 00 00 00 00 00 00 00   ...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                0b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 14
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 20 10 44 00 01 02        .P...J.. .D...  
            Vendor specific: len 6
                OUI: 00:e0:4c type:02
                00 e0 4c 02 01 10                                ..L...          
            WSC Payload: len 10
                Version: 20
                WSC State: Configured
        Beacon Interval: 100 (0x0064)
        Capability: 49 (0x0031)
            ESS
            Privacy
            ShortPreamble
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072356604 (0x0000006de9b482fc)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 336 [multi]                    269.135374
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072372542 (0x0000006de9b4c13e)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 316 [multi]                    269.135374
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01010000 
                01 03 00 0a                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  1 station(s) utilization 71/255 available capacity 31250 32µs/s units
                01 00 47 12 7a                                   ..G.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 08 0c 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072401031 (0x0000006de9b53087)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 488 [multi]                    269.135374
    Generation: 821 (0x00000335)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 34/255 available capacity 0 32µs/s units
                04 00 22 00 00                                   .."..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 472072608375 (0x0000006de9b85a77)
        Signal mBm: -7500
> Complete: Get Scan (0x20) len 4 [multi]                            269.135623
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        269.169497
    Flags: 769 (0x301)
    Sequence number: 1704335288 (0x659617b8)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             269.169830
    Flags: 2 (0x002)
    Sequence number: 1704335288 (0x659617b8)
    Port ID: 6887
> RTNL: New Link (0x10) len 1424 [multi]                             269.169830
    Flags: 2 (0x002)
    Sequence number: 1704335288 (0x659617b8)
    Port ID: 6887
> RTNL: New Link (0x10) len 1428 [multi]                             269.170342
    Flags: 2 (0x002)
    Sequence number: 1704335288 (0x659617b8)
    Port ID: 6887
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             269.170342
    Flags: 2 (0x002)
    Sequence number: 1704335288 (0x659617b8)
    Port ID: 6887
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 db 00 00 00 ae 7f 00 00 28 4c 01 00  N...........(L..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             269.171142
    Flags: 2 (0x002)
    Sequence number: 1704335288 (0x659617b8)
    Port ID: 6887
> RTNL: Done (0x03) len 4 [multi]                                    269.171459
    Flags: 2 (0x002)
    Sequence number: 1704335288 (0x659617b8)
    Port ID: 6887
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            269.171781
    Flags: 2 (0x002)
    Sequence number: 1704335289 (0x659617b9)
    Port ID: 6887
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            269.171942
    Flags: 2 (0x002)
    Sequence number: 1704335289 (0x659617b9)
    Port ID: 6887
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    269.172075
    Flags: 2 (0x002)
    Sequence number: 1704335289 (0x659617b9)
    Port ID: 6887
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                          269.187003
    Interface Index: 2 (0x00000002)
> Response: Get Interface (0x05) len 4                               269.187031
    Status: No such device (19)
> RTNL: New Address (0x14) len 60 [multi]                            269.282073
    Flags: 2 (0x002)
    Sequence number: 1704335287 (0x659617b7)
    Port ID: 6897
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            269.282130
    Flags: 2 (0x002)
    Sequence number: 1704335287 (0x659617b7)
    Port ID: 6897
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    269.282157
    Flags: 2 (0x002)
    Sequence number: 1704335287 (0x659617b7)
    Port ID: 6897
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            269.547682
    Flags: 2 (0x002)
    Sequence number: 1704335287 (0x659617b7)
    Port ID: 6900
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            269.547770
    Flags: 2 (0x002)
    Sequence number: 1704335287 (0x659617b7)
    Port ID: 6900
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    269.547801
    Flags: 2 (0x002)
    Sequence number: 1704335287 (0x659617b7)
    Port ID: 6900
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            269.789185
    Flags: 2 (0x002)
    Sequence number: 1704335287 (0x659617b7)
    Port ID: 6902
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            269.789240
    Flags: 2 (0x002)
    Sequence number: 1704335287 (0x659617b7)
    Port ID: 6902
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    269.789271
    Flags: 2 (0x002)
    Sequence number: 1704335287 (0x659617b7)
    Port ID: 6902
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            274.923267
    Flags: 2 (0x002)
    Sequence number: 1704335292 (0x659617bc)
    Port ID: 6974
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            274.923322
    Flags: 2 (0x002)
    Sequence number: 1704335292 (0x659617bc)
    Port ID: 6974
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    274.923351
    Flags: 2 (0x002)
    Sequence number: 1704335292 (0x659617bc)
    Port ID: 6974
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            278.753491
    Flags: 2 (0x002)
    Sequence number: 1704335296 (0x659617c0)
    Port ID: 7018
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            278.753683
    Flags: 2 (0x002)
    Sequence number: 1704335296 (0x659617c0)
    Port ID: 7018
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    278.753988
    Flags: 2 (0x002)
    Sequence number: 1704335296 (0x659617c0)
    Port ID: 7018
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            279.460167
    Flags: 2 (0x002)
    Sequence number: 1704335297 (0x659617c1)
    Port ID: 7022
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            279.460223
    Flags: 2 (0x002)
    Sequence number: 1704335297 (0x659617c1)
    Port ID: 7022
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    279.460250
    Flags: 2 (0x002)
    Sequence number: 1704335297 (0x659617c1)
    Port ID: 7022
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            284.141696
    Flags: 2 (0x002)
    Sequence number: 1704335302 (0x659617c6)
    Port ID: 7082
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            284.141774
    Flags: 2 (0x002)
    Sequence number: 1704335302 (0x659617c6)
    Port ID: 7082
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    284.141812
    Flags: 2 (0x002)
    Sequence number: 1704335302 (0x659617c6)
    Port ID: 7082
    Status: 0
> RTNL: New Route (0x18) len 36 [multi,0x20]                         284.940041
    Flags: 34 (0x022)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7094
    RTM Family: AF_INET
    RTM Destination Len: 0
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: global
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Gateway: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                         284.940041
    Flags: 34 (0x022)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7094
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.0
        Preferred Source: 192.168.1.212
        Output Interface Index: 2
> RTNL: New Route (0x18) len 36 [multi,0x20]                         284.940041
    Flags: 34 (0x022)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7094
    RTM Family: AF_INET
    RTM Destination Len: 32
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                         284.940041
    Flags: 34 (0x022)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7094
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.5.0
        Preferred Source: 192.168.5.1
        Output Interface Index: 4
> RTNL: Done (0x03) len 4 [multi,0x20]                               284.940434
    Flags: 34 (0x022)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7094
    Status: 0
< RTNL: Get Link (0x12) len 24 [request]                             284.940881
    Flags: 1 (0x001)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                     284.940996
    Flags: 0 (0x000)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 2515218105
< RTNL: Get Link (0x12) len 24 [request]                             284.941541
    Flags: 1 (0x001)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 1044                                     284.941663
    Flags: 0 (0x000)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 4235843798
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 dc 00 00 00 ae 7f 00 00 92 51 01 00  N............Q..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: Get Link (0x12) len 24 [request,dump]                        284.955863
    Flags: 769 (0x301)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             284.955989
    Flags: 2 (0x002)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7097
> RTNL: New Link (0x10) len 1424 [multi]                             284.955989
    Flags: 2 (0x002)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7097
> RTNL: New Link (0x10) len 1428 [multi]                             284.956053
    Flags: 2 (0x002)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7097
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             284.956053
    Flags: 2 (0x002)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7097
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 dc 00 00 00 ae 7f 00 00 92 51 01 00  N............Q..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             284.956174
    Flags: 2 (0x002)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7097
> RTNL: Done (0x03) len 4 [multi]                                    284.956245
    Flags: 2 (0x002)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7097
    Status: 0
< RTNL: New Link (0x10) len 16 [request,ack]                         284.969461
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                          284.969510
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 7100
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                             284.969679
    Flags: 1 (0x001)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                     284.969769
    Flags: 0 (0x000)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 4016464066
< RTNL: New Link (0x10) len 16 [request,ack]                         284.969995
    Flags: 5 (0x005)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                  284.970156
    Flags: 256 (0x100)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7100
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                         284.988391
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                          284.988494
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 7102
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                             284.988758
    Flags: 1 (0x001)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 0
> RTNL: New Link (0x10) len 1048                                     284.988849
    Flags: 0 (0x000)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 3349154206
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                         284.989235
    Flags: 5 (0x005)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                  284.989362
    Flags: 256 (0x100)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7102
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                         285.003498
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                          285.003683
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 7106
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 32 [request]                             285.003929
    Flags: 1 (0x001)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                     285.004042
    Flags: 0 (0x000)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 4283714496
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 dc 00 00 00 ae 7f 00 00 92 51 01 00  N............Q..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                         285.004721
    Flags: 5 (0x005)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                  285.004884
    Flags: 256 (0x100)
    Sequence number: 1704335303 (0x659617c7)
    Port ID: 7106
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                         285.017676
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                          285.017947
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 7108
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                             285.018310
    Flags: 1 (0x001)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 0
> RTNL: New Link (0x10) len 988                                      285.018428
    Flags: 0 (0x000)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 2370762092
< RTNL: New Link (0x10) len 16 [request,ack]                         285.018864
    Flags: 5 (0x005)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                  285.018961
    Flags: 256 (0x100)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 7108
    ACK: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        285.032205
    Flags: 769 (0x301)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             285.032456
    Flags: 2 (0x002)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 7110
> RTNL: New Link (0x10) len 1424 [multi]                             285.032456
    Flags: 2 (0x002)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 7110
> RTNL: New Link (0x10) len 1428 [multi]                             285.032911
    Flags: 2 (0x002)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 7110
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             285.032911
    Flags: 2 (0x002)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 7110
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 dc 00 00 00 ae 7f 00 00 92 51 01 00  N............Q..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             285.033646
    Flags: 2 (0x002)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 7110
> RTNL: Done (0x03) len 4 [multi]                                    285.034108
    Flags: 2 (0x002)
    Sequence number: 1704335304 (0x659617c8)
    Port ID: 7110
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            285.034421
    Flags: 2 (0x002)
    Sequence number: 1704335305 (0x659617c9)
    Port ID: 7110
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            285.034696
    Flags: 2 (0x002)
    Sequence number: 1704335305 (0x659617c9)
    Port ID: 7110
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    285.034838
    Flags: 2 (0x002)
    Sequence number: 1704335305 (0x659617c9)
    Port ID: 7110
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                    285.106616
> Result: New Interface (0x07) len 136 [multi]                       285.108283
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Result: New Interface (0x07) len 124 [multi]                       285.108283
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Complete: Get Interface (0x05) len 4 [multi]                       285.108345
    Status: 0
< Request: Get Station (0x11) len 8 [ack,0x300]                      285.136857
    Interface Index: 4 (0x00000004)
> Complete: Get Station (0x11) len 4 [multi]                         285.137558
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                        285.148166
    Interface Index: 4 (0x00000004)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                      285.148196
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                         285.158644
    Interface Index: 4 (0x00000004)
> Result: Get Power Save (0x3e) len 8                                285.158766
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                      285.158852
    Status: Success (0)
< Request: Trigger Scan (0x21) len 64 [ack]                          285.180918
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                  285.182288
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        285.182616
    Status: Success (0)
< Request: Get Station (0x11) len 8 [ack,0x300]                      285.195162
    Interface Index: 3 (0x00000003)
> Complete: Get Station (0x11) len 4 [multi]                         285.195836
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                        285.207030
    Interface Index: 3 (0x00000003)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                      285.207161
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                         285.217357
    Interface Index: 3 (0x00000003)
> Result: Get Power Save (0x3e) len 8                                285.217482
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                      285.217561
    Status: Success (0)
< Request: Get Protocol Features (0x5f) len 0 [ack]                  285.255748
> Result: Get Protocol Features (0x5f) len 8                         285.255796
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]               285.255811
    Status: Success (0)
< Request: Get Wiphy (0x01) len 4 [ack,0x300]                        285.255911
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                           285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                           285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                           285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                           285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                           285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                          285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                            285.256053
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                           285.256115
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                  285.268567
> Result: Get Protocol Features (0x5f) len 8                         285.268604
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]               285.268620
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                       285.268700
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                           285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                           285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                           285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                           285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                           285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                          285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                            285.268835
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                           285.268895
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                  285.281605
> Result: Get Protocol Features (0x5f) len 8                         285.281637
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]               285.281650
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                       285.282143
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                           285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                           285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                           285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                           285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                           285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                          285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                            285.282304
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                           285.282370
    Status: 0
> Event: New Scan Results (0x22) len 84                              285.594849
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       285.594927
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       285.594945
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       285.594967
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       285.594984
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       285.595003
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        285.595233
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    285.595312
    Generation: 828 (0x0000033c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 488532923000 (0x00000071bed4d278)
        Signal mBm: -6100
> Result: New Scan Results (0x22) len 428 [multi]                    285.595312
    Generation: 828 (0x0000033c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 488532931073 (0x00000071bed4f201)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 440 [multi]                    285.595312
    Generation: 828 (0x0000033c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 79/255 available capacity 31250 32µs/s units
                02 00 4f 12 7a                                   ..O.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 488532904563 (0x00000071bed48a73)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 404 [multi]                    285.595312
    Generation: 828 (0x0000033c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00100000 
                01 02 00 04                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 488532914198 (0x00000071bed4b016)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 304 [multi]                    285.595312
    Generation: 828 (0x0000033c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID 58:2F:F7:67:7C:2E
        TSF: 0 (0x0000000000000000)
        IEs: len 175
            SSID: BingoBango
                42 69 6e 67 6f 42 61 6e 67 6f                    BingoBango      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            BSS load:  0 station(s) utilization 44/255 available capacity 0 32µs/s units
                00 00 2c 00 00                                   ..,..           
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 00 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 00 17 ff ff ff 00 00 00 00 00 00 00 00 00 00  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                04 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 10 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 488532890188 (0x00000071bed4524c)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 384 [multi]                    285.595312
    Generation: 828 (0x0000033c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 90/255 available capacity 0 32µs/s units
                01 00 5a 00 00                                   ..Z..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 488532868313 (0x00000071bed3fcd9)
        Signal mBm: -7900
> Complete: Get Scan (0x20) len 4 [multi]                            285.595364
    Status: 0
< Request: Trigger Scan (0x21) len 248 [ack]                         285.597094
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                 285.598333
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        285.598368
    Status: Success (0)
> Event: New Scan Results (0x22) len 268                             291.241015
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       291.241074
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       291.241094
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       291.241110
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       291.241134
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       291.241154
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        291.241322
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178891930 (0x000000730f5b789a)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5644 (0x0000160c)
        Timestamp: 488532931073 (0x00000071bed4f201)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 440 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 79/255 available capacity 31250 32µs/s units
                02 00 4f 12 7a                                   ..O.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178868753 (0x000000730f5b1e11)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 404 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00100000 
                01 02 00 04                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5644 (0x0000160c)
        Timestamp: 488532914198 (0x00000071bed4b016)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 304 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID 58:2F:F7:67:7C:2E
        TSF: 0 (0x0000000000000000)
        IEs: len 175
            SSID: BingoBango
                42 69 6e 67 6f 42 61 6e 67 6f                    BingoBango      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            BSS load:  0 station(s) utilization 44/255 available capacity 0 32µs/s units
                00 00 2c 00 00                                   ..,..           
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 00 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 00 17 ff ff ff 00 00 00 00 00 00 00 00 00 00  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                04 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 10 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 5644 (0x0000160c)
        Timestamp: 488532890188 (0x00000071bed4524c)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 384 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 69/255 available capacity 0 32µs/s units
                01 00 45 00 00                                   ..E..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178927816 (0x000000730f5c04c8)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 480 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178784847 (0x000000730f59d64f)
        Signal mBm: -6200
> Result: New Scan Results (0x22) len 388 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 63/255 available capacity 0 32µs/s units
                00 00 3f 00 00                                   ..?..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178801774 (0x000000730f5a186e)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 372 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID C0:89:AB:BC:03:B0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTBUimK8s
                41 54 54 42 55 69 6d 4b 38 73                    ATTBUimK8s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 26 dB link margin  0 dB
                1a 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  3 station(s) utilization 41/255 available capacity 0 32µs/s units
                03 00 29 00 00                                   ..)..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                07 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 03 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178807868 (0x000000730f5a303c)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 392 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178814951 (0x000000730f5a4be7)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 372 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 55/255 available capacity 0 32µs/s units
                00 00 37 00 00                                   ..7..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178828545 (0x000000730f5a8101)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 396 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                00 01 00 08                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178834587 (0x000000730f5a989b)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 380 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 40/255 available capacity 0 32µs/s units
                00 00 28 00 00                                   ..(..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178847347 (0x000000730f5aca73)
        Signal mBm: -3500
> Result: New Scan Results (0x22) len 336 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178858180 (0x000000730f5af4c4)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 392 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID 94:53:30:E2:19:40
        TSF: 0 (0x0000000000000000)
        IEs: len 261
            SSID: WIFIE2193C
                57 49 46 49 45 32 31 39 33 43                    WIFIE2193C      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  3 station(s) utilization 39/255 available capacity 0 32µs/s units
                03 00 27 00 00                                   ..'..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 19 17 ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                04 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 fd 97 ac 39 3d c7 94 13 ef 58 6c 09 c4 79  .....9=....Xl..y
                32 9a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  2..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 03 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            Vendor specific: len 30
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 00 c0 05 00 0b 00 00 00 c3 02 00 02        ..............  
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: fd97ac39-3dc7-9413-ef58-6c09c479329a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178880785 (0x000000730f5b4d11)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 304 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID AC:F1:08:CB:9C:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 176
            SSID: AT_301_WLRGL5821S_9cd8
                41 54 5f 33 30 31 5f 57 4c 52 47 4c 35 38 32 31  AT_301_WLRGL5821
                53 5f 39 63 64 38                                S_9cd8          
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Static
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 1
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                20 00 1d ff 00 00 00 00 00 00 00 00 00 00 00 00   ...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                0b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 14
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 20 10 44 00 01 02        .P...J.. .D...  
            Vendor specific: len 6
                OUI: 00:e0:4c type:02
                00 e0 4c 02 01 10                                ..L...          
            WSC Payload: len 10
                Version: 20
                WSC State: Configured
        Beacon Interval: 100 (0x0064)
        Capability: 49 (0x0031)
            ESS
            Privacy
            ShortPreamble
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178904170 (0x000000730f5ba86a)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 308 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 276
        BSSID 58:90:43:45:4A:EC
        TSF: 0 (0x0000000000000000)
        IEs: len 178
            SSID: MySpectrumWiFie6-2G
                4d 79 53 70 65 63 74 72 75 6d 57 69 46 69 65 36  MySpectrumWiFie6
                2d 32 47                                         -2G             
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                00 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178909847 (0x000000730f5bbe97)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 316 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01010000 
                01 03 00 0a                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  1 station(s) utilization 83/255 available capacity 31250 32µs/s units
                01 00 53 12 7a                                   ..S.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 08 0c 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178915837 (0x000000730f5bd5fd)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 376 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 88/255 available capacity 0 32µs/s units
                00 00 58 00 00                                   ..X..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178921618 (0x000000730f5bec92)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 396 [multi]                    291.241427
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178934795 (0x000000730f5c200b)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 356 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178940993 (0x000000730f5c3841)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 372 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 37/255 available capacity 0 32µs/s units
                02 00 25 00 00                                   ..%..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178946514 (0x000000730f5c4dd2)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 384 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 33/255 available capacity 0 32µs/s units
                01 00 21 00 00                                   ..!..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178952295 (0x000000730f5c6467)
        Signal mBm: -6000
> Result: New Scan Results (0x22) len 372 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178958076 (0x000000730f5c7afc)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 384 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 30/255 available capacity 0 32µs/s units
                02 00 1e 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178963909 (0x000000730f5c91c5)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 240 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178974378 (0x000000730f5cbaaa)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 384 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 63/255 available capacity 0 32µs/s units
                02 00 3f 00 00                                   ..?..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178980628 (0x000000730f5cd314)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 460 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 65/255 available capacity 0 32µs/s units
                01 00 41 00 00                                   ..A..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494178991670 (0x000000730f5cfe36)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 452 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179005784 (0x000000730f5d3558)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 460 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 43/255 available capacity 0 32µs/s units
                02 00 2b 00 00                                   ..+..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179014014 (0x000000730f5d557e)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179022087 (0x000000730f5d7507)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 452 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179040889 (0x000000730f5dbe79)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 428 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 36/255 available capacity 65535 32µs/s units
                00 00 24 ff ff                                   ..$..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179049014 (0x000000730f5dde36)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 492 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                01 03 00 40                                      ...@            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 36/255 available capacity 65535 32µs/s units
                06 00 24 ff ff                                   ..$..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179057347 (0x000000730f5dfec3)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 524 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179069743 (0x000000730f5e2f2f)
        Signal mBm: -8900
> Result: New Scan Results (0x22) len 440 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179082451 (0x000000730f5e60d3)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 488 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 56/255 available capacity 0 32µs/s units
                04 00 38 00 00                                   ..8..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179095368 (0x000000730f5e9348)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 516 [multi]                    291.241602
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 494179107191 (0x000000730f5ec177)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 556 [multi]                    291.241958
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 494179120159 (0x000000730f5ef41f)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 428 [multi]                    291.241958
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 11/255 available capacity 65535 32µs/s units
                00 00 0b ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 494179128753 (0x000000730f5f15b1)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 492 [multi]                    291.241958
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 11/255 available capacity 65535 32µs/s units
                05 00 0b ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 494179137243 (0x000000730f5f36db)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 412 [multi]                    291.241958
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 494179150107 (0x000000730f5f691b)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    291.241958
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 12/255 available capacity 0 32µs/s units
                02 00 0c 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 494179160941 (0x000000730f5f936d)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    291.241958
    Generation: 869 (0x00000365)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                00 02 00 08                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 34/255 available capacity 65535 32µs/s units
                02 00 22 ff ff                                   .."..           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 86 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 494179176930 (0x000000730f5fd1e2)
        Signal mBm: -6700
> Complete: Get Scan (0x20) len 4 [multi]                            291.242179
    Status: 0
< Request: Trigger Scan (0x21) len 128 [ack]                         291.244134
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                 291.245268
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        291.245303
    Status: Success (0)
> Event: New Scan Results (0x22) len 148                             296.884170
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       296.884237
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       296.884255
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       296.884269
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       296.884287
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       296.884307
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        296.884448
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822011853 (0x000000745fb6a5cd)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822019614 (0x000000745fb6c41e)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 440 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 77/255 available capacity 31250 32µs/s units
                02 00 4d 12 7a                                   ..M.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499821983468 (0x000000745fb636ec)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 404 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822004197 (0x000000745fb687e5)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 304 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID 58:2F:F7:67:7C:2E
        TSF: 0 (0x0000000000000000)
        IEs: len 175
            SSID: BingoBango
                42 69 6e 67 6f 42 61 6e 67 6f                    BingoBango      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            BSS load:  0 station(s) utilization 43/255 available capacity 0 32µs/s units
                00 00 2b 00 00                                   ..+..           
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 00 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 00 17 ff ff ff 00 00 00 00 00 00 00 00 00 00  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                04 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 10 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822027530 (0x000000745fb6e30a)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 480 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499821942426 (0x000000745fb5969a)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 388 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 57/255 available capacity 0 32µs/s units
                00 00 39 00 00                                   ..9..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499821921749 (0x000000745fb545d5)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 392 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499821950343 (0x000000745fb5b587)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 372 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 54/255 available capacity 0 32µs/s units
                00 00 36 00 00                                   ..6..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 12: OBSS non-HT STAs present
                09 08 11 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499821930082 (0x000000745fb56662)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 396 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499821970707 (0x000000745fb60513)
        Signal mBm: -7300
> Result: New Scan Results (0x22) len 380 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 35/255 available capacity 0 32µs/s units
                00 00 23 00 00                                   ..#..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499821962999 (0x000000745fb5e6f7)
        Signal mBm: -3500
> Result: New Scan Results (0x22) len 392 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID 94:53:30:E2:19:40
        TSF: 0 (0x0000000000000000)
        IEs: len 261
            SSID: WIFIE2193C
                57 49 46 49 45 32 31 39 33 43                    WIFIE2193C      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  3 station(s) utilization 25/255 available capacity 0 32µs/s units
                03 00 19 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 19 17 ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                04 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 fd 97 ac 39 3d c7 94 13 ef 58 6c 09 c4 79  .....9=....Xl..y
                32 9a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  2..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 03 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            Vendor specific: len 30
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 00 c0 05 00 0b 00 00 00 c3 02 00 02        ..............  
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: fd97ac39-3dc7-9413-ef58-6c09c479329a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499821995759 (0x000000745fb666ef)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 356 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822055134 (0x000000745fb74ede)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 372 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 36/255 available capacity 0 32µs/s units
                02 00 24 00 00                                   ..$..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822043311 (0x000000745fb720af)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 384 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 17/255 available capacity 0 32µs/s units
                01 00 11 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822075395 (0x000000745fb79e03)
        Signal mBm: -5900
> Result: New Scan Results (0x22) len 372 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499821900916 (0x000000745fb4f474)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 384 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 44/255 available capacity 0 32µs/s units
                02 00 2c 00 00                                   ..,..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822082947 (0x000000745fb7bb83)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 240 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                01 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822035447 (0x000000745fb701f7)
        Signal mBm: -7200
> Result: New Scan Results (0x22) len 384 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 54/255 available capacity 0 32µs/s units
                02 00 36 00 00                                   ..6..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822090603 (0x000000745fb7d96b)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 460 [multi]                    296.884560
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 36/255 available capacity 0 32µs/s units
                01 00 24 00 00                                   ..$..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822098468 (0x000000745fb7f824)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 452 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822114093 (0x000000745fb8352d)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 460 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 42/255 available capacity 0 32µs/s units
                02 00 2a 00 00                                   ..*..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822124457 (0x000000745fb85da9)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822152530 (0x000000745fb8cb52)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 452 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822166020 (0x000000745fb90004)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 428 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 57/255 available capacity 65535 32µs/s units
                00 00 39 ff ff                                   ..9..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822175082 (0x000000745fb9236a)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 492 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 10000000 
                00 03 01 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 57/255 available capacity 65535 32µs/s units
                06 00 39 ff ff                                   ..9..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822184301 (0x000000745fb9476d)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 440 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822194874 (0x000000745fb970ba)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 516 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822227061 (0x000000745fb9ee75)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 556 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822244874 (0x000000745fba340a)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 428 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 12/255 available capacity 65535 32µs/s units
                00 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822254770 (0x000000745fba5ab2)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 492 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 12/255 available capacity 65535 32µs/s units
                05 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822264040 (0x000000745fba7ee8)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 412 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822274561 (0x000000745fbaa801)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 6/255 available capacity 0 32µs/s units
                02 00 06 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822291384 (0x000000745fbae9b8)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 23/255 available capacity 65535 32µs/s units
                02 00 17 ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 86 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822304145 (0x000000745fbb1b91)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 500 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 468
        BSSID 48:0F:CF:A5:36:C6
        TSF: 0 (0x0000000000000000)
        IEs: len 372
            SSID: DIRECT-C5-HP ENVY 4520 series
                44 49 52 45 43 54 2d 43 35 2d 48 50 20 45 4e 56  DIRECT-C5-HP ENV
                59 20 34 35 32 30 20 73 65 72 69 65 73           Y 4520 series   
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Static
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                20 00 1a ff 00 00 00 00 00 00 00 00 00 00 00 00   ...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                03 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 0c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 88 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 05 01 03 06 00 4a 0f cf a5  Po..........J...
                36 c5                                            6.              
            Vendor specific: len 79
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 57  .P...J....D....W
                00 01 01 10 41 00 01 00 10 54 00 08 00 03 00 50  ....A....T.....P
                f2 04 00 05 10 11 00 1d 44 49 52 45 43 54 2d 43  ........DIRECT-C
                35 2d 48 50 20 45 4e 56 59 20 34 35 32 30 20 73  5-HP ENVY 4520 s
                65 72 69 65 73 10 49 00 06 00 37 2a 00 01 20     eries.I...7*..  
            Vendor specific: len 95
                OUI: 08:00:09 type:00
                08 00 09 00 04 00 00 00 07 01 02 01 00 03 11 45  ...............E
                4e 56 59 20 34 35 32 30 20 73 65 72 69 65 73 00  NVY 4520 series.
                04 05 34 35 32 30 00 05 10 54 48 35 36 47 31 4d  ..4520...TH56G1M
                30 39 51 30 36 36 30 00 00 06 10 1c 85 2a 4d b8  09Q0660......*M.
                00 1f 08 ab cd 48 0f cf a5 36 c5 07 04 c0 a8 01  .....H...6......
                44 08 02 00 d4 09 02 00 08 0a 04 00 00 00 01     D.............. 
            WSC Payload: len 75
                Version: 10
                WSC State: Configured
                AP Setup Locked: True
                Selected Registrar: False
                Primary Device Type: Printer/Scanner/Fax/Copier
                    OUI: 0050f204
                    SubCategory: 05
                Device Name: DIRECT-C5-HP ENVY 4520 series
                WFA Vendor Extension: len 3
                    Version2: 2.0
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    Concurrent Operation
                P2P Group Capability:
                    P2P Group Owner
                P2P Device ID: 4a:0f:cf:a5:36:c5
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822062791 (0x000000745fb76cc7)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 460 [multi]                    296.884722
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000100 
                02 03 00 00 20                                   ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 87/255 available capacity 0 32µs/s units
                02 00 57 00 00                                   ..W..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822134457 (0x000000745fb884b9)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 452 [multi]                    296.885025
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822204457 (0x000000745fb99629)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 488 [multi]                    296.885025
    Generation: 908 (0x0000038c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 499822212843 (0x000000745fb9b6eb)
        Signal mBm: -8300
> Complete: Get Scan (0x20) len 4 [multi]                            296.885262
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        305.916785
    Flags: 769 (0x301)
    Sequence number: 1704335324 (0x659617dc)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             305.917033
    Flags: 2 (0x002)
    Sequence number: 1704335324 (0x659617dc)
    Port ID: 7422
> RTNL: New Link (0x10) len 1424 [multi]                             305.917033
    Flags: 2 (0x002)
    Sequence number: 1704335324 (0x659617dc)
    Port ID: 7422
> RTNL: New Link (0x10) len 1428 [multi]                             305.917604
    Flags: 2 (0x002)
    Sequence number: 1704335324 (0x659617dc)
    Port ID: 7422
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             305.917604
    Flags: 2 (0x002)
    Sequence number: 1704335324 (0x659617dc)
    Port ID: 7422
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 e0 00 00 00 ae 7f 00 00 7a 57 01 00  N...........zW..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             305.918301
    Flags: 2 (0x002)
    Sequence number: 1704335324 (0x659617dc)
    Port ID: 7422
> RTNL: Done (0x03) len 4 [multi]                                    305.918564
    Flags: 2 (0x002)
    Sequence number: 1704335324 (0x659617dc)
    Port ID: 7422
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            305.918949
    Flags: 2 (0x002)
    Sequence number: 1704335325 (0x659617dd)
    Port ID: 7422
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            305.919105
    Flags: 2 (0x002)
    Sequence number: 1704335325 (0x659617dd)
    Port ID: 7422
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    305.919233
    Flags: 2 (0x002)
    Sequence number: 1704335325 (0x659617dd)
    Port ID: 7422
    Status: 0
< Request: Get Reg (0x1f) len 0 [ack,0x300]                          382.468909
> Result: Get Reg (0x1f) len 492 [multi]                             382.468970
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                             382.468970
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                             382.469024
    Status: 0
< Request: Get Reg (0x1f) len 0 [ack,0x300]                          505.865440
> Result: Get Reg (0x1f) len 492 [multi]                             505.865517
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                             505.865517
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                             505.865577
    Status: 0
< Request: Trigger Scan (0x21) len 352 [ack]                         554.174074
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
> Event: Trigger Scan (0x21) len 372                                 554.175300
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> Response: Trigger Scan (0x21) len 4 [0x100]                        554.175332
    Status: Success (0)
> Event: New Scan Results (0x22) len 372                             559.812991
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> RTNL: New Link (0x10) len 48                                       559.813043
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       559.813068
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       559.813083
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       559.813101
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       559.813127
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        559.813231
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750833555 (0x000000b1977e1393)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750825482 (0x000000b1977df40a)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 440 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 53/255 available capacity 31250 32µs/s units
                02 00 35 12 7a                                   ..5.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750817357 (0x000000b1977dd44d)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 480 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750767149 (0x000000b1977d102d)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 392 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750787149 (0x000000b1977d5e4d)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 380 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 36/255 available capacity 0 32µs/s units
                00 00 24 00 00                                   ..$..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750795222 (0x000000b1977d7dd6)
        Signal mBm: -3900
> Result: New Scan Results (0x22) len 372 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 77/255 available capacity 0 32µs/s units
                02 00 4d 00 00                                   ..M..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750895586 (0x000000b1977f05e2)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 384 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 19/255 available capacity 0 32µs/s units
                01 00 13 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750902774 (0x000000b1977f21f6)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 372 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751159699 (0x000000b197830d93)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 384 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 43/255 available capacity 0 32µs/s units
                02 00 2b 00 00                                   ..+..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750917409 (0x000000b1977f5b21)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 240 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750910430 (0x000000b1977f3fde)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 384 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 72/255 available capacity 0 32µs/s units
                02 00 48 00 00                                   ..H..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750742462 (0x000000b1977cafbe)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 460 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 77/255 available capacity 0 32µs/s units
                01 00 4d 00 00                                   ..M..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750925846 (0x000000b1977f7c16)
        Signal mBm: -4500
> Result: New Scan Results (0x22) len 452 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750941523 (0x000000b1977fb953)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 460 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 71/255 available capacity 0 32µs/s units
                02 00 47 00 00                                   ..G..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750951575 (0x000000b1977fe097)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751005013 (0x000000b19780b155)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 428 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 47/255 available capacity 65535 32µs/s units
                00 00 2f ff ff                                   ../..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751014336 (0x000000b19780d5c0)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 492 [multi]                    559.813357
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 10000000 
                00 03 01 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 47/255 available capacity 65535 32µs/s units
                06 00 2f ff ff                                   ../..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751023450 (0x000000b19780f95a)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 440 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750974388 (0x000000b1978039b4)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 516 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751099648 (0x000000b197822300)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 556 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751109335 (0x000000b1978248d7)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 428 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 14/255 available capacity 65535 32µs/s units
                00 00 0e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751060481 (0x000000b197818a01)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 492 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 14/255 available capacity 65535 32µs/s units
                05 00 0e ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8f 00 04 64 00 00 25 86 00 00  .P.......d..%...
                43 64 5e 00 63 53 2f 00                          Cd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751085377 (0x000000b19781eb41)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 412 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751123814 (0x000000b197828166)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 20/255 available capacity 0 32µs/s units
                02 00 14 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751147043 (0x000000b19782dc23)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 38/255 available capacity 65535 32µs/s units
                02 00 26 ff ff                                   ..&..           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 87 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751167304 (0x000000b197832b48)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 460 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 76/255 available capacity 0 32µs/s units
                02 00 4c 00 00                                   ..L..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750961367 (0x000000b1978006d7)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 452 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762751032721 (0x000000b197811d91)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 488 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750986732 (0x000000b1978069ec)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 372 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID C0:89:AB:BC:03:B0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTBUimK8s
                41 54 54 42 55 69 6d 4b 38 73                    ATTBUimK8s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 26 dB link margin  0 dB
                1a 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  3 station(s) utilization 40/255 available capacity 0 32µs/s units
                03 00 28 00 00                                   ..(..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                07 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 03 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750775378 (0x000000b1977d3052)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 336 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750804024 (0x000000b1977da038)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 304 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID AC:F1:08:CB:9C:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 176
            SSID: AT_301_WLRGL5821S_9cd8
                41 54 5f 33 30 31 5f 57 4c 52 47 4c 35 38 32 31  AT_301_WLRGL5821
                53 5f 39 63 64 38                                S_9cd8          
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Static
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 1
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                20 00 1d ff 00 00 00 00 00 00 00 00 00 00 00 00   ...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                0b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 14
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 20 10 44 00 01 02        .P...J.. .D...  
            Vendor specific: len 6
                OUI: 00:e0:4c type:02
                00 e0 4c 02 01 10                                ..L...          
            WSC Payload: len 10
                Version: 20
                WSC State: Configured
        Beacon Interval: 100 (0x0064)
        Capability: 49 (0x0031)
            ESS
            Privacy
            ShortPreamble
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750841055 (0x000000b1977e30df)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 308 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 276
        BSSID 58:90:43:45:4A:EC
        TSF: 0 (0x0000000000000000)
        IEs: len 178
            SSID: MySpectrumWiFie6-2G
                4d 79 53 70 65 63 74 72 75 6d 57 69 46 69 65 36  MySpectrumWiFie6
                2d 32 47                                         -2G             
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                00 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750848972 (0x000000b1977e4fcc)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 396 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00100000 
                00 02 00 04                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750863503 (0x000000b1977e888f)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 316 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01010000 
                01 03 00 0a                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  2 station(s) utilization 93/255 available capacity 31250 32µs/s units
                02 00 5d 12 7a                                   ..].z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 08 0c 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750878399 (0x000000b1977ec2bf)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 376 [multi]                    559.813501
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 103/255 available capacity 0 32µs/s units
                00 00 67 00 00                                   ..g..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 762750888972 (0x000000b1977eec0c)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 556 [multi]                    559.813800
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 762750996159 (0x000000b197808ebf)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 488 [multi]                    559.813800
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 46/255 available capacity 0 32µs/s units
                04 00 2e 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 762751043606 (0x000000b197814816)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 440 [multi]                    559.813800
    Generation: 948 (0x000003b4)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 762751136418 (0x000000b19782b2a2)
        Signal mBm: -7400
> Complete: Get Scan (0x20) len 4 [multi]                            559.814026
    Status: 0
< Request: Get Reg (0x1f) len 0 [ack,0x300]                          636.413581
> Result: Get Reg (0x1f) len 492 [multi]                             636.413645
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                             636.413645
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                             636.413700
    Status: 0
> RTNL: New Route (0x18) len 36 [multi,0x20]                         676.597342
    Flags: 34 (0x022)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11324
    RTM Family: AF_INET
    RTM Destination Len: 0
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: global
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Gateway: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                         676.597342
    Flags: 34 (0x022)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11324
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.0
        Preferred Source: 192.168.1.212
        Output Interface Index: 2
> RTNL: New Route (0x18) len 36 [multi,0x20]                         676.597342
    Flags: 34 (0x022)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11324
    RTM Family: AF_INET
    RTM Destination Len: 32
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: boot
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.1.254
        Output Interface Index: 2
> RTNL: New Route (0x18) len 44 [multi,0x20]                         676.597342
    Flags: 34 (0x022)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11324
    RTM Family: AF_INET
    RTM Destination Len: 24
    RTM Source Len: 0
    RTM TOS Field: 0
    RTM Table: 254
    RTM Protocol: kernel
    RTM Scope: link
    RTM Type: 1
    RTM Flags: (0x00)
        Routing Table: 254 (0x000000fe)
        Destination Address: 192.168.5.0
        Preferred Source: 192.168.5.1
        Output Interface Index: 4
> RTNL: Done (0x03) len 4 [multi,0x20]                               676.597374
    Flags: 34 (0x022)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11324
    Status: 0
< RTNL: Get Link (0x12) len 24 [request]                             676.597716
    Flags: 1 (0x001)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                     676.597853
    Flags: 0 (0x000)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 2948288654
< RTNL: Get Link (0x12) len 24 [request]                             676.598164
    Flags: 1 (0x001)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 1044                                     676.598203
    Flags: 0 (0x000)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 2318784096
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 fc 00 00 00 ae 7f 00 00 2e 5c 01 00  N............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: Get Link (0x12) len 24 [request,dump]                        676.612329
    Flags: 769 (0x301)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             676.612598
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11327
> RTNL: New Link (0x10) len 1424 [multi]                             676.612598
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11327
> RTNL: New Link (0x10) len 1428 [multi]                             676.613055
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11327
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             676.613055
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11327
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 fc 00 00 00 ae 7f 00 00 2e 5c 01 00  N............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             676.613830
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11327
> RTNL: Done (0x03) len 4 [multi]                                    676.614098
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11327
    Status: 0
< RTNL: New Link (0x10) len 16 [request,ack]                         676.627533
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                          676.627716
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 11330
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                             676.627950
    Flags: 1 (0x001)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                     676.628071
    Flags: 0 (0x000)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 2272764561
< RTNL: New Link (0x10) len 16 [request,ack]                         676.628527
    Flags: 5 (0x005)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                  676.628718
    Flags: 256 (0x100)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11330
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                         676.644747
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                          676.644801
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 11332
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                             676.644974
    Flags: 1 (0x001)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: New Link (0x10) len 1048                                     676.645047
    Flags: 0 (0x000)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 2808332135
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                         676.645294
    Flags: 5 (0x005)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                  676.645381
    Flags: 256 (0x100)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11332
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                         676.659284
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                          676.659329
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 11335
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 32 [request]                             676.659497
    Flags: 1 (0x001)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: New Link (0x10) len 1044                                     676.659545
    Flags: 0 (0x000)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 3712283781
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 fc 00 00 00 ae 7f 00 00 2e 5c 01 00  N............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 408
        Reserved: len 12
        Reserved: len 5
< RTNL: New Link (0x10) len 16 [request,ack]                         676.659761
    Flags: 5 (0x005)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                  676.659850
    Flags: 256 (0x100)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11335
    ACK: 0
< RTNL: New Link (0x10) len 16 [request,ack]                         676.674676
    Flags: 5 (0x005)
    Sequence number: 0 (0x00000000)
    Port ID: 0
> RTNL: Error (0x02) len 36                                          676.674721
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 11338
    Error: -19 (No such device)
< RTNL: Get Link (0x12) len 36 [request]                             676.674880
    Flags: 1 (0x001)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: New Link (0x10) len 988                                      676.674929
    Flags: 0 (0x000)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 4094278873
< RTNL: New Link (0x10) len 16 [request,ack]                         676.675131
    Flags: 5 (0x005)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: Error (0x02) len 20 [0x100]                                  676.675159
    Flags: 256 (0x100)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11338
    ACK: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        676.688807
    Flags: 769 (0x301)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             676.688925
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11340
> RTNL: New Link (0x10) len 1424 [multi]                             676.688925
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11340
> RTNL: New Link (0x10) len 1428 [multi]                             676.688989
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11340
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             676.688989
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11340
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 fc 00 00 00 ae 7f 00 00 2e 5c 01 00  N............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             676.689116
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11340
> RTNL: Done (0x03) len 4 [multi]                                    676.689185
    Flags: 2 (0x002)
    Sequence number: 1704335695 (0x6596194f)
    Port ID: 11340
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            676.689335
    Flags: 2 (0x002)
    Sequence number: 1704335696 (0x65961950)
    Port ID: 11340
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            676.689385
    Flags: 2 (0x002)
    Sequence number: 1704335696 (0x65961950)
    Port ID: 11340
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    676.689415
    Flags: 2 (0x002)
    Sequence number: 1704335696 (0x65961950)
    Port ID: 11340
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                    676.762350
> Result: New Interface (0x07) len 136 [multi]                       676.764201
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Result: New Interface (0x07) len 124 [multi]                       676.764201
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Complete: Get Interface (0x05) len 4 [multi]                       676.764265
    Status: 0
< Request: Get Station (0x11) len 8 [ack,0x300]                      676.792955
    Interface Index: 4 (0x00000004)
> Complete: Get Station (0x11) len 4 [multi]                         676.793645
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                        676.804484
    Interface Index: 4 (0x00000004)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                      676.804515
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                         676.814292
    Interface Index: 4 (0x00000004)
> Result: Get Power Save (0x3e) len 8                                676.814328
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                      676.814340
    Status: Success (0)
< Request: Trigger Scan (0x21) len 64 [ack]                          676.837182
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                  676.838311
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        676.838344
    Status: Success (0)
< Request: Get Station (0x11) len 8 [ack,0x300]                      676.851365
    Interface Index: 3 (0x00000003)
> Complete: Get Station (0x11) len 4 [multi]                         676.852222
    Status: 0
< Request: Set Power Save (0x3d) len 16 [ack]                        676.862331
    Interface Index: 3 (0x00000003)
    PS State: 0 (0x00000000)
> Response: Set Power Save (0x3d) len 4 [0x100]                      676.862360
    Status: Success (0)
< Request: Get Power Save (0x3e) len 8 [ack]                         676.872819
    Interface Index: 3 (0x00000003)
> Result: Get Power Save (0x3e) len 8                                676.872848
    PS State: 0 (0x00000000)
> Response: Get Power Save (0x3e) len 4 [0x100]                      676.872863
    Status: Success (0)
< Request: Get Protocol Features (0x5f) len 0 [ack]                  676.912451
> Result: Get Protocol Features (0x5f) len 8                         676.912506
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]               676.912521
    Status: Success (0)
< Request: Get Wiphy (0x01) len 4 [ack,0x300]                        676.912621
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                           676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                           676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                           676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                           676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                           676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                          676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                            676.912764
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                           676.912816
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                  676.926298
> Result: Get Protocol Features (0x5f) len 8                         676.926330
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]               676.926343
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                       676.926425
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                           676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                           676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                           676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                           676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                           676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                          676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                            676.926561
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                           676.926622
    Status: 0
< Request: Get Protocol Features (0x5f) len 0 [ack]                  676.940365
> Result: Get Protocol Features (0x5f) len 8                         676.940407
    Protocol Features: 1 (0x00000001)
> Response: Get Protocol Features (0x5f) len 4 [0x100]               676.940421
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                       676.940511
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 116 [multi]                           676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Retry Short: 7 (0x07)
    Wiphy Retry Long: 4 (0x04)
    Wiphy Frag Threshold: 4294967295 (0xffffffff)
    Wiphy RTS Threshold: 4294967295 (0xffffffff)
    Wiphy Coverage Class: 0 (0x00)
    Max Number Scan SSIDs: 10 (0x0a)
    Max Num Sched Scan SSIDs: 16 (0x10)
    Max Scan IE Length: 2048 (0x0800)
    Max Sched Scan IE Len: 2048 (0x0800)
    Max Match Sets: 16 (0x10)
    Roaming Support: true
    TDLS Support: true
> Result: New Wiphy (0x03) len 76 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Cipher Suites:
        WEP-40 (00:0f:ac) suite  01
        WEP-104 (00:0f:ac) suite  05
        TKIP (00:0f:ac) suite  02
        CCMP (00:0f:ac) suite  04
        BIP (00:0f:ac) suite  06
    Max Number PMKIDs: 16 (0x10)
    Wiphy Antenna Avail TX: 113 len 4
        00 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 56 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 24
        Ad-hoc: true
        Station: true
        AP: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                           676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 208
        Band 0: len 204
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            Rates: len 156
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 10 (0x0000000a)
                Bitrate 1: len 12
                    Bitrate (100kbps multiple): 20 (0x00000014)
                    2GHZ Short Preamble: true
                Bitrate 2: len 12
                    Bitrate (100kbps multiple): 55 (0x00000037)
                    2GHZ Short Preamble: true
                Bitrate 3: len 12
                    Bitrate (100kbps multiple): 110 (0x0000006e)
                    2GHZ Short Preamble: true
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 8: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 9: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 10: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 11: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 0: len 36
                    Frequency: 2412 (0x0000096c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 1: len 36
                    Frequency: 2417 (0x00000971)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 2: len 36
                    Frequency: 2422 (0x00000976)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 3: len 36
                    Frequency: 2427 (0x0000097b)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 4: len 36
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 5: len 36
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 6: len 36
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 7: len 36
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 8: len 36
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 9: len 36
                    Frequency: 2457 (0x00000999)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 10: len 36
                    Frequency: 2462 (0x0000099e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 11: len 36
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 80 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 12: len 36
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 88 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 0: len 52
            Frequencies: len 48
                Frequency 13: len 44
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 0: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 200 [multi]                           676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 168
        Band 1: len 164
            HT MCS Set: MCS 0
            HT MCS Set: MCS 1
            HT MCS Set: MCS 2
            HT MCS Set: MCS 3
            HT MCS Set: MCS 4
            HT MCS Set: MCS 5
            HT MCS Set: MCS 6
            HT MCS Set: MCS 7
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Static
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT Capabilities Info: bit  6: Short GI for 40Mhz
            HT Capabilities Info: bits 8-9: Disabled
            HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                07                                               .               
            VHT MCS Set: 7 len 8
                fe ff 00 00 fe ff 00 00                          ........        
            VHT Capabilities: 8 len 4
                20 10 00 00                                       ...            
            Rates: len 96
                Bitrate 0: len 8
                    Bitrate (100kbps multiple): 60 (0x0000003c)
                Bitrate 1: len 8
                    Bitrate (100kbps multiple): 90 (0x0000005a)
                Bitrate 2: len 8
                    Bitrate (100kbps multiple): 120 (0x00000078)
                Bitrate 3: len 8
                    Bitrate (100kbps multiple): 180 (0x000000b4)
                Bitrate 4: len 8
                    Bitrate (100kbps multiple): 240 (0x000000f0)
                Bitrate 5: len 8
                    Bitrate (100kbps multiple): 360 (0x00000168)
                Bitrate 6: len 8
                    Bitrate (100kbps multiple): 480 (0x000001e0)
                Bitrate 7: len 8
                    Bitrate (100kbps multiple): 540 (0x0000021c)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 0: len 28
                    Frequency: 5170 (0x00001432)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 1: len 28
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 2: len 28
                    Frequency: 5190 (0x00001446)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 3: len 28
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 4: len 28
                    Frequency: 5210 (0x0000145a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 5: len 28
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 6: len 28
                    Frequency: 5230 (0x0000146e)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 7: len 28
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 8: len 28
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 9: len 28
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 10: len 28
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 11: len 28
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 12: len 28
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 13: len 28
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 14: len 28
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 15: len 28
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 16: len 28
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 17: len 28
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 18: len 28
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 19: len 28
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 20: len 28
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 21: len 28
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 22: len 28
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 23: len 28
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 24: len 28
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 25: len 28
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 26: len 28
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 27: len 28
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 72 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 40
        Band 1: len 36
            Frequencies: len 32
                Frequency 28: len 28
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Unknown: 26 len 0
                    Max TX Power: 2000 (0x000007d0)
> Result: New Wiphy (0x03) len 40 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 8
        Band 1: len 4
            Frequencies: len 0
> Result: New Wiphy (0x03) len 32 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 192 [multi]                           676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        Join IBSS [43]
        Set PMKSA [52]
        Del PMKSA [53]
        Flush PMKSA [54]
        Remain on Channel [55]
        Frame [59]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Oper [81]
        Start Sched Scan [75]
        Start P2P Device [89]
        Connect [46]
        Disconnect [48]
        Crit Protocol Start [98]
        Crit Protocol Stop [99]
        Update Connect Params [122]
> Result: New Wiphy (0x03) len 40 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 5000 (0x00001388)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 28 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 260 [multi]                           676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 0
    Interface Combinations: 120 len 224
        68 00 01 00 44 00 01 00 14 00 01 00 08 00 01 00  h...D...........
        01 00 00 00 08 00 02 00 04 00 02 00 14 00 02 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        18 00 03 00 08 00 01 00 01 00 00 00 0c 00 02 00  ................
        04 00 08 00 04 00 09 00 08 00 04 00 02 00 00 00  ................
        08 00 02 00 03 00 00 00 08 00 05 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 78 00 02 00 54 00 01 00  ........x...T...
        14 00 01 00 08 00 01 00 01 00 00 00 08 00 02 00  ................
        04 00 02 00 14 00 02 00 08 00 01 00 01 00 00 00  ................
        08 00 02 00 04 00 03 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 08 00 14 00 04 00  ................
        08 00 01 00 01 00 00 00 08 00 02 00 04 00 0a 00  ................
        08 00 04 00 01 00 00 00 08 00 02 00 04 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
> Result: New Wiphy (0x03) len 44 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Device AP SME: 141 len 4
        00 00 00 00                                      ....            
    Feature Flags: 143 len 4
        80 40 00 40                                      .@.@            
> Result: New Wiphy (0x03) len 1028 [multi]                          676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 692
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-GO: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        P2P-Device: len 128
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0010
                Type: Management (0)
                Subtype: Association response (1)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0030
                Type: Management (0)
                Subtype: Reassociation response (3)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x0050
                Type: Management (0)
                Subtype: Probe response (5)
            Frame Type: 0x0060
                Type: Management (0)
                Subtype: Timing Advertisement (6)
            Frame Type: 0x0070
                Type: Management (0)
                Subtype: Reserved (7)
            Frame Type: 0x0080
                Type: Management (0)
                Subtype: Beacon (8)
            Frame Type: 0x0090
                Type: Management (0)
                Subtype: ATIM (9)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
            Frame Type: 0x00e0
                Type: Management (0)
                Subtype: Action No Ack (14)
            Frame Type: 0x00f0
                Type: Management (0)
                Subtype: Reserved (15)
        Unknown: 11 len 0
        Unknown: 12 len 0
    RX Frame Types: len 212
        Unknown: 0 len 0
        Ad-hoc: len 0
        Station: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        AP-VLAN: len 0
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 0
        P2P-Client: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-GO: len 56
            Frame Type: 0x0000
                Type: Management (0)
                Subtype: Association request (0)
            Frame Type: 0x0020
                Type: Management (0)
                Subtype: Reassociation request (2)
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00a0
                Type: Management (0)
                Subtype: Disassociation (10)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            Frame Type: 0x00c0
                Type: Management (0)
                Subtype: Deauthentication (12)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        P2P-Device: len 16
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00d0
                Type: Management (0)
                Subtype: Action (13)
        Unknown: 11 len 0
        Unknown: 12 len 0
    Unknown: 222 len 4
        01 00 00 00                                      ....            
    Unknown: 223 len 4
        fc 01 00 00                                      ....            
    Unknown: 224 len 4
        00 00 00 00                                      ....            
    MAC Address B8:27:EB:52:CC:D0
    MAC Addresses: len 48
        1 B8:27:EB:52:CC:D0
        2 BA:27:EB:52:CC:D1
        3 BA:27:EB:52:CC:D2
        4 BA:27:EB:52:CC:D3
> Result: New Wiphy (0x03) len 28 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 44 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Vendor Data: len 12
        0c 00 01 00 18 10 00 00 01 00 00 00              ............    
> Result: New Wiphy (0x03) len 64 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_CQM_RSSI_LIST
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X
        NL80211_EXT_FEATURE_DFS_OFFLOAD
        NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK
    Unknown: 227 len 12
        04 00 01 00 04 00 02 00 04 00 03 00              ............    
> Result: New Wiphy (0x03) len 36 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
> Result: New Wiphy (0x03) len 28 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 36 [multi]                            676.940650
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 316 len 2
        02 00                                            ..              
> Complete: Get Wiphy (0x01) len 4 [multi]                           676.940718
    Status: 0
> Event: New Scan Results (0x22) len 84                              677.252829
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       677.252899
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       677.252920
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       677.252935
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       677.252955
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       677.252977
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        677.253082
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    677.253170
    Generation: 956 (0x000003bc)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 880190928116 (0x000000ccef77b4f4)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                    677.253170
    Generation: 956 (0x000003bc)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 880190910512 (0x000000ccef777030)
        Signal mBm: -6100
> Result: New Scan Results (0x22) len 440 [multi]                    677.253170
    Generation: 956 (0x000003bc)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 62/255 available capacity 31250 32µs/s units
                02 00 3e 12 7a                                   ..>.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 880190919522 (0x000000ccef779362)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 396 [multi]                    677.253170
    Generation: 956 (0x000003bc)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 880190863897 (0x000000ccef76ba19)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 316 [multi]                    677.253170
    Generation: 956 (0x000003bc)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01010000 
                02 03 00 0a                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  2 station(s) utilization 87/255 available capacity 31250 32µs/s units
                02 00 57 12 7a                                   ..W.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 08 0c 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 880190902595 (0x000000ccef775143)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 376 [multi]                    677.253170
    Generation: 956 (0x000003bc)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 117/255 available capacity 0 32µs/s units
                00 00 75 00 00                                   ..u..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 880190886866 (0x000000ccef7713d2)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 384 [multi]                    677.253170
    Generation: 956 (0x000003bc)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 60/255 available capacity 0 32µs/s units
                01 00 3c 00 00                                   ..<..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 880190894574 (0x000000ccef7731ee)
        Signal mBm: -7900
> Complete: Get Scan (0x20) len 4 [multi]                            677.253277
    Status: 0
< Request: Trigger Scan (0x21) len 248 [ack]                         677.257257
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                 677.258441
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        677.258484
    Status: Success (0)
> Event: New Scan Results (0x22) len 268                             682.901904
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       682.901960
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       682.901978
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       682.901992
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       682.902008
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       682.902027
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        682.902283
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839704964 (0x000000ce40293384)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839690797 (0x000000ce4028fc2d)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 440 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 62/255 available capacity 31250 32µs/s units
                02 00 3e 12 7a                                   ..>.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839657308 (0x000000ce4028795c)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 396 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839726943 (0x000000ce4029895f)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 316 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                02 03 00 08                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  2 station(s) utilization 87/255 available capacity 31250 32µs/s units
                02 00 57 12 7a                                   ..W.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 08 0c 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839720016 (0x000000ce40296e50)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 384 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 67/255 available capacity 0 32µs/s units
                01 00 43 00 00                                   ..C..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839712464 (0x000000ce402950d0)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 384 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 73/255 available capacity 0 32µs/s units
                02 00 49 00 00                                   ..I..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839587412 (0x000000ce40276854)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 480 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839604339 (0x000000ce4027aa73)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 388 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 71/255 available capacity 0 32µs/s units
                00 00 47 00 00                                   ..G..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839613766 (0x000000ce4027cf46)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 392 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839620016 (0x000000ce4027e7b0)
        Signal mBm: -7000
> Result: New Scan Results (0x22) len 372 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 59/255 available capacity 0 32µs/s units
                00 00 3b 00 00                                   ..;..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839640172 (0x000000ce4028366c)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 380 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 44/255 available capacity 0 32µs/s units
                00 00 2c 00 00                                   ..,..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839646579 (0x000000ce40284f73)
        Signal mBm: -3200
> Result: New Scan Results (0x22) len 396 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839676943 (0x000000ce4028c60f)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 372 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 52/255 available capacity 0 32µs/s units
                02 00 34 00 00                                   ..4..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839682881 (0x000000ce4028dd41)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 404 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839698714 (0x000000ce40291b1a)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 356 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839734183 (0x000000ce4029a5a7)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 500 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 468
        BSSID 48:0F:CF:A5:36:C6
        TSF: 0 (0x0000000000000000)
        IEs: len 372
            SSID: DIRECT-C5-HP ENVY 4520 series
                44 49 52 45 43 54 2d 43 35 2d 48 50 20 45 4e 56  DIRECT-C5-HP ENV
                59 20 34 35 32 30 20 73 65 72 69 65 73           Y 4520 series   
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Static
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                20 00 1a ff 00 00 00 00 00 00 00 00 00 00 00 00   ...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                03 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 0c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 88 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 05 01 03 06 00 4a 0f cf a5  Po..........J...
                36 c5                                            6.              
            Vendor specific: len 79
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 57  .P...J....D....W
                00 01 01 10 41 00 01 00 10 54 00 08 00 03 00 50  ....A....T.....P
                f2 04 00 05 10 11 00 1d 44 49 52 45 43 54 2d 43  ........DIRECT-C
                35 2d 48 50 20 45 4e 56 59 20 34 35 32 30 20 73  5-HP ENVY 4520 s
                65 72 69 65 73 10 49 00 06 00 37 2a 00 01 20     eries.I...7*..  
            Vendor specific: len 95
                OUI: 08:00:09 type:00
                08 00 09 00 04 00 00 00 07 01 02 01 00 03 11 45  ...............E
                4e 56 59 20 34 35 32 30 20 73 65 72 69 65 73 00  NVY 4520 series.
                04 05 34 35 32 30 00 05 10 54 48 35 36 47 31 4d  ..4520...TH56G1M
                30 39 51 30 36 36 30 00 00 06 10 1c 85 2a 4d b8  09Q0660......*M.
                00 1f 08 ab cd 48 0f cf a5 36 c5 07 04 c0 a8 01  .....H...6......
                44 08 02 00 d4 09 02 00 08 0a 04 00 00 00 01     D.............. 
            WSC Payload: len 75
                Version: 10
                WSC State: Configured
                AP Setup Locked: True
                Selected Registrar: False
                Primary Device Type: Printer/Scanner/Fax/Copier
                    OUI: 0050f204
                    SubCategory: 05
                Device Name: DIRECT-C5-HP ENVY 4520 series
                WFA Vendor Extension: len 3
                    Version2: 2.0
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    Concurrent Operation
                P2P Group Capability:
                    P2P Group Owner
                P2P Device ID: 4a:0f:cf:a5:36:c5
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839744078 (0x000000ce4029cc4e)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 372 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839754755 (0x000000ce4029f603)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 240 [multi]                    682.902384
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                01 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839760641 (0x000000ce402a0d01)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 384 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 31/255 available capacity 0 32µs/s units
                02 00 1f 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839771110 (0x000000ce402a35e6)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 384 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 33/255 available capacity 0 32µs/s units
                01 00 21 00 00                                   ..!..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839786682 (0x000000ce402a72ba)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 460 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 60/255 available capacity 0 32µs/s units
                01 00 3c 00 00                                   ..<..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839798089 (0x000000ce402a9f49)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 460 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 46/255 available capacity 0 32µs/s units
                02 00 2e 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839812776 (0x000000ce402ad8a8)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 460 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000100 
                01 03 00 00 20                                   ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 73/255 available capacity 0 32µs/s units
                02 00 49 00 00                                   ..I..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839820849 (0x000000ce402af831)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 452 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839836838 (0x000000ce402b36a6)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839848141 (0x000000ce402b62cd)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 428 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 33/255 available capacity 65535 32µs/s units
                00 00 21 ff ff                                   ..!..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839855901 (0x000000ce402b811d)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 504 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 472
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 376
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   32 10000000 00000000 00000000 00000000 
                AID    33 -   64 00000000 00000000 00000000 00000000 
                AID    65 -   96 00000000 00000000 00001100 00000000 
                AID    97 -  104 01000000 
                01 03 00 01 00 00 00 00 00 00 00 00 00 30 00 02  .............0..
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 33/255 available capacity 65535 32µs/s units
                06 00 21 ff ff                                   ..!..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839864234 (0x000000ce402ba1aa)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 440 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839877151 (0x000000ce402bd41f)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 452 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839885120 (0x000000ce402bf340)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 488 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839893088 (0x000000ce402c1260)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 524 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839905953 (0x000000ce402c44a1)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 556 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839914442 (0x000000ce402c65ca)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 488 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 27/255 available capacity 0 32µs/s units
                04 00 1b 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839923088 (0x000000ce402c8790)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 428 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 13/255 available capacity 65535 32µs/s units
                00 00 0d ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839936421 (0x000000ce402cbba5)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 492 [multi]                    682.902470
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 13/255 available capacity 65535 32µs/s units
                05 00 0d ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8f 00 04 64 00 00 25 86 00 00  .P.......d..%...
                43 64 5e 00 63 53 2f 00                          Cd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839962776 (0x000000ce402d2298)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 516 [multi]                    682.902751
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839971526 (0x000000ce402d44c6)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 556 [multi]                    682.902751
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839979650 (0x000000ce402d6482)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 412 [multi]                    682.902751
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 885839992359 (0x000000ce402d9627)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 484 [multi]                    682.902751
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 10/255 available capacity 0 32µs/s units
                02 00 0a 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 885840036994 (0x000000ce402e4482)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    682.902751
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 10000000 
                01 02 00 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 20/255 available capacity 65535 32µs/s units
                02 00 14 ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 89 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 885840058088 (0x000000ce402e96e8)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 440 [multi]                    682.902751
    Generation: 999 (0x000003e7)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 885840069442 (0x000000ce402ec342)
        Signal mBm: -7500
> Complete: Get Scan (0x20) len 4 [multi]                            682.902977
    Status: 0
< Request: Trigger Scan (0x21) len 128 [ack]                         682.905156
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                 682.906313
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        682.906349
    Status: Success (0)
> Event: New Scan Results (0x22) len 148                             688.543942
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       688.544003
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       688.544026
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       688.544041
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       688.544058
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       688.544076
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        688.544207
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481799847 (0x000000cf9074bca7)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481813493 (0x000000cf9074f1f5)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 440 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 58/255 available capacity 31250 32µs/s units
                02 00 3a 12 7a                                   ..:.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481784586 (0x000000cf9074810a)
        Signal mBm: -7300
> Result: New Scan Results (0x22) len 316 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                00 03 00 08                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  2 station(s) utilization 95/255 available capacity 31250 32µs/s units
                02 00 5f 12 7a                                   .._.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 08 0c 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481821305 (0x000000cf90751079)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 384 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 75/255 available capacity 0 32µs/s units
                01 00 4b 00 00                                   ..K..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481828493 (0x000000cf90752c8d)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 384 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 67/255 available capacity 0 32µs/s units
                02 00 43 00 00                                   ..C..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481878649 (0x000000cf9075f079)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 480 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481729535 (0x000000cf9073a9ff)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 388 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 81/255 available capacity 0 32µs/s units
                00 00 51 00 00                                   ..Q..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481712139 (0x000000cf9073660b)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 392 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481690264 (0x000000cf90731098)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 372 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 64/255 available capacity 0 32µs/s units
                00 00 40 00 00                                   ..@..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481753493 (0x000000cf90740795)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 380 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 57/255 available capacity 0 32µs/s units
                00 00 39 00 00                                   ..9..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481764118 (0x000000cf90743116)
        Signal mBm: -3200
> Result: New Scan Results (0x22) len 396 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481772139 (0x000000cf9074506b)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 372 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 42/255 available capacity 0 32µs/s units
                02 00 2a 00 00                                   ..*..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481855628 (0x000000cf9075968c)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 404 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481792451 (0x000000cf90749fc3)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 356 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481843649 (0x000000cf907567c1)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 240 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                01 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481871253 (0x000000cf9075d395)
        Signal mBm: -7300
> Result: New Scan Results (0x22) len 384 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 51/255 available capacity 0 32µs/s units
                02 00 33 00 00                                   ..3..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481863492 (0x000000cf9075b544)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 384 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 28/255 available capacity 0 32µs/s units
                01 00 1c 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481835888 (0x000000cf90754970)
        Signal mBm: -6000
> Result: New Scan Results (0x22) len 460 [multi]                    688.544304
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 46/255 available capacity 0 32µs/s units
                01 00 2e 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481886513 (0x000000cf90760f31)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 460 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 60/255 available capacity 0 32µs/s units
                02 00 3c 00 00                                   ..<..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481911878 (0x000000cf90767246)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 452 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481921930 (0x000000cf9076998a)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481939274 (0x000000cf9076dd4a)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 428 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 32/255 available capacity 65535 32µs/s units
                00 00 20 ff ff                                   .. ..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481948544 (0x000000cf90770180)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 492 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 03 00 40                                      ...@            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 32/255 available capacity 65535 32µs/s units
                06 00 20 ff ff                                   .. ..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481957815 (0x000000cf907725b7)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 524 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481967346 (0x000000cf90774af2)
        Signal mBm: -9100
> Result: New Scan Results (0x22) len 488 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 34/255 available capacity 0 32µs/s units
                04 00 22 00 00                                   .."..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481977763 (0x000000cf907773a3)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 444 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 412
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 316
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 12/255 available capacity 65535 32µs/s units
                00 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 85 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Measurement Request
                Token: 248
                Request Mode: 6
                    Enable bit set
                    Request bit set
                Type: Clear Channel Assessment
                f8 06 01 6c 00 00 05 2b 03 2e d4 d1 00 1d        ...l...+......  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891482018805 (0x000000cf907813f5)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 508 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 476
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 380
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 12/255 available capacity 65535 32µs/s units
                05 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8f 00 04 64 00 00 25 86 00 00  .P.......d..%...
                43 64 5e 00 63 53 2f 00                          Cd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Measurement Request
                Token: 248
                Request Mode: 6
                    Enable bit set
                    Request bit set
                Type: Clear Channel Assessment
                f8 06 01 6c 00 00 05 2b 03 2e d4 d1 00 1d        ...l...+......  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891482028388 (0x000000cf90783964)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 516 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481995471 (0x000000cf9077b8cf)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 556 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891482008805 (0x000000cf9077ece5)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 412 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891482044586 (0x000000cf907878aa)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 17/255 available capacity 0 32µs/s units
                02 00 11 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891482068336 (0x000000cf9078d570)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 31/255 available capacity 65535 32µs/s units
                02 00 1f ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 89 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891482085627 (0x000000cf907918fb)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 440 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891482098648 (0x000000cf90794bd8)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 372 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID C0:89:AB:BC:03:B0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTBUimK8s
                41 54 54 42 55 69 6d 4b 38 73                    ATTBUimK8s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 26 dB link margin  0 dB
                1a 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 58/255 available capacity 0 32µs/s units
                04 00 3a 00 00                                   ..:..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                07 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481720003 (0x000000cf907384c3)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 336 [multi]                    688.544451
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0a 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481737035 (0x000000cf9073c74b)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 304 [multi]                    688.544690
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID AC:F1:08:CB:9C:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 176
            SSID: AT_301_WLRGL5821S_9cd8
                41 54 5f 33 30 31 5f 57 4c 52 47 4c 35 38 32 31  AT_301_WLRGL5821
                53 5f 39 63 64 38                                S_9cd8          
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Static
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 1
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                20 00 1d ff 00 00 00 00 00 00 00 00 00 00 00 00   ...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                0b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 14
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 20 10 44 00 01 02        .P...J.. .D...  
            Vendor specific: len 6
                OUI: 00:e0:4c type:02
                00 e0 4c 02 01 10                                ..L...          
            WSC Payload: len 10
                Version: 20
                WSC State: Configured
        Beacon Interval: 100 (0x0064)
        Capability: 49 (0x0031)
            ESS
            Privacy
            ShortPreamble
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481807503 (0x000000cf9074da8f)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                    688.544690
    Generation: 1038 (0x0000040e)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID 12:3D:0A:B4:01:31
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 36
                24                                               $               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                24 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 34 33 22 20  ...7*.. ....43" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 12 3d 0a b4  Po.....!.....=..
                01 31                                            .1              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 43" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: 12:3d:0a:b4:01:31
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 891481902815 (0x000000cf90764edf)
        Signal mBm: -8800
> Complete: Get Scan (0x20) len 4 [multi]                            688.544901
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        697.498924
    Flags: 769 (0x301)
    Sequence number: 1704335716 (0x65961964)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             697.499039
    Flags: 2 (0x002)
    Sequence number: 1704335716 (0x65961964)
    Port ID: 11639
> RTNL: New Link (0x10) len 1424 [multi]                             697.499039
    Flags: 2 (0x002)
    Sequence number: 1704335716 (0x65961964)
    Port ID: 11639
> RTNL: New Link (0x10) len 1428 [multi]                             697.499102
    Flags: 2 (0x002)
    Sequence number: 1704335716 (0x65961964)
    Port ID: 11639
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             697.499102
    Flags: 2 (0x002)
    Sequence number: 1704335716 (0x65961964)
    Port ID: 11639
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 fc 00 00 00 ae 7f 00 00 2e 5c 01 00  N............\..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             697.499226
    Flags: 2 (0x002)
    Sequence number: 1704335716 (0x65961964)
    Port ID: 11639
> RTNL: Done (0x03) len 4 [multi]                                    697.499298
    Flags: 2 (0x002)
    Sequence number: 1704335716 (0x65961964)
    Port ID: 11639
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            697.499443
    Flags: 2 (0x002)
    Sequence number: 1704335717 (0x65961965)
    Port ID: 11639
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            697.499493
    Flags: 2 (0x002)
    Sequence number: 1704335717 (0x65961965)
    Port ID: 11639
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    697.499523
    Flags: 2 (0x002)
    Sequence number: 1704335717 (0x65961965)
    Port ID: 11639
    Status: 0
< Request: Get Reg (0x1f) len 0 [ack,0x300]                          753.704611
> Result: Get Reg (0x1f) len 492 [multi]                             753.704672
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                             753.704672
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                             753.704727
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        772.558243
    Flags: 769 (0x301)
    Sequence number: 1704335791 (0x659619af)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             772.558504
    Flags: 2 (0x002)
    Sequence number: 1704335791 (0x659619af)
    Port ID: 12421
> RTNL: New Link (0x10) len 1424 [multi]                             772.558504
    Flags: 2 (0x002)
    Sequence number: 1704335791 (0x659619af)
    Port ID: 12421
> RTNL: New Link (0x10) len 1428 [multi]                             772.558952
    Flags: 2 (0x002)
    Sequence number: 1704335791 (0x659619af)
    Port ID: 12421
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             772.558952
    Flags: 2 (0x002)
    Sequence number: 1704335791 (0x659619af)
    Port ID: 12421
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 02 01 00 00 ae 7f 00 00 2a 5d 01 00  N...........*]..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             772.559707
    Flags: 2 (0x002)
    Sequence number: 1704335791 (0x659619af)
    Port ID: 12421
> RTNL: Done (0x03) len 4 [multi]                                    772.559952
    Flags: 2 (0x002)
    Sequence number: 1704335791 (0x659619af)
    Port ID: 12421
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            772.560240
    Flags: 2 (0x002)
    Sequence number: 1704335792 (0x659619b0)
    Port ID: 12421
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            772.560393
    Flags: 2 (0x002)
    Sequence number: 1704335792 (0x659619b0)
    Port ID: 12421
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    772.560581
    Flags: 2 (0x002)
    Sequence number: 1704335792 (0x659619b0)
    Port ID: 12421
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                    772.598092
> Result: New Interface (0x07) len 136 [multi]                       772.605624
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Result: New Interface (0x07) len 124 [multi]                       772.605624
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Complete: Get Interface (0x05) len 4 [multi]                       772.605722
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                          772.626125
    Interface Index: 4 (0x00000004)
> Result: New Interface (0x07) len 136                               772.627080
    Interface Index: 4 (0x00000004)
    Interface Name: ap0
    Wiphy: 0 (0x00000000)
    Interface Type: 3 (0x00000003)
    Wireless Device: 2 (0x0000000000000002)
    MAC Address B8:27:EB:00:00:00
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
    SSID: len 11
        52 75 6e 65 41 75 64 69 6f 41 50                 RuneAudioAP     
> Response: Get Interface (0x05) len 4 [0x100]                       772.627110
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          772.642046
    Interface Index: 3 (0x00000003)
> Result: New Interface (0x07) len 124                               772.644355
    Interface Index: 3 (0x00000003)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address B8:27:EB:52:CC:D0
    Generation: 6 (0x00000006)
    4-Address: 0 (0x00)
    Wiphy Frequency: 2437 (0x00000985)
    Unknown: 290 len 4
        00 00 00 00                                      ....            
    Wiphy Channel Type: 1 (0x00000001)
    Channel Width: 1 (0x00000001)
    Center Frequency 1: 2437 (0x00000985)
    Wiphy TX Power Level: 3100 (0x00000c1c)
> Response: Get Interface (0x05) len 4 [0x100]                       772.644391
    Status: Success (0)
< Request: Trigger Scan (0x21) len 64 [ack]                          772.674621
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 84                                  772.675861
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        772.675905
    Status: Success (0)
> Event: New Scan Results (0x22) len 84                              773.092124
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 24
        0: 2412 (0x0000096c)
        1: 2437 (0x00000985)
        2: 2462 (0x0000099e)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       773.092190
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       773.092208
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       773.092223
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       773.092249
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       773.092268
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        773.092546
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    773.092639
    Generation: 1043 (0x00000413)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 976030199862 (0x000000e33feef036)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                    773.092639
    Generation: 1043 (0x00000413)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 976030218143 (0x000000e33fef379f)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 384 [multi]                    773.092639
    Generation: 1043 (0x00000413)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 72/255 available capacity 0 32µs/s units
                01 00 48 00 00                                   ..H..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 976030175174 (0x000000e33fee8fc6)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 304 [multi]                    773.092639
    Generation: 1043 (0x00000413)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID AC:F1:08:CB:9C:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 176
            SSID: AT_301_WLRGL5821S_9cd8
                41 54 5f 33 30 31 5f 57 4c 52 47 4c 35 38 32 31  AT_301_WLRGL5821
                53 5f 39 63 64 38                                S_9cd8          
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Static
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 1
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                20 00 1d ff 00 00 00 00 00 00 00 00 00 00 00 00   ...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                0b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 14
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 20 10 44 00 01 02        .P...J.. .D...  
            Vendor specific: len 6
                OUI: 00:e0:4c type:02
                00 e0 4c 02 01 10                                ..L...          
            WSC Payload: len 10
                Version: 20
                WSC State: Configured
        Beacon Interval: 100 (0x0064)
        Capability: 49 (0x0031)
            ESS
            Privacy
            ShortPreamble
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 976030208924 (0x000000e33fef139c)
        Signal mBm: -7800
> Complete: Get Scan (0x20) len 4 [multi]                            773.092689
    Status: 0
< Request: Trigger Scan (0x21) len 248 [ack]                         773.094568
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 268                                 773.095792
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        773.095834
    Status: Success (0)
> Event: New Scan Results (0x22) len 268                             778.731135
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 208
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       778.731191
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       778.731209
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       778.731223
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       778.731241
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       778.731262
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        778.731898
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668954865 (0x000000e4900782f1)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668937938 (0x000000e4900740d2)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 304 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID AC:F1:08:CB:9C:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 176
            SSID: AT_301_WLRGL5821S_9cd8
                41 54 5f 33 30 31 5f 57 4c 52 47 4c 35 38 32 31  AT_301_WLRGL5821
                53 5f 39 63 64 38                                S_9cd8          
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Static
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 1
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                20 00 1d ff 00 00 00 00 00 00 00 00 00 00 00 00   ...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                0b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 14
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 20 10 44 00 01 02        .P...J.. .D...  
            Vendor specific: len 6
                OUI: 00:e0:4c type:02
                00 e0 4c 02 01 10                                ..L...          
            WSC Payload: len 10
                Version: 20
                WSC State: Configured
        Beacon Interval: 100 (0x0064)
        Capability: 49 (0x0031)
            ESS
            Privacy
            ShortPreamble
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668962573 (0x000000e49007a10d)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 372 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 41/255 available capacity 0 32µs/s units
                02 00 29 00 00                                   ..)..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668875490 (0x000000e490064ce2)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 480 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668891948 (0x000000e490068d2c)
        Signal mBm: -6200
> Result: New Scan Results (0x22) len 372 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 50/255 available capacity 0 32µs/s units
                00 00 32 00 00                                   ..2..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668898198 (0x000000e49006a596)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 388 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 60/255 available capacity 0 32µs/s units
                00 00 3c 00 00                                   ..<..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668903823 (0x000000e49006bb8f)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 392 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668909813 (0x000000e49006d2f5)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 380 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 35/255 available capacity 0 32µs/s units
                00 00 23 00 00                                   ..#..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668916584 (0x000000e49006ed68)
        Signal mBm: -3200
> Result: New Scan Results (0x22) len 336 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0a 00 05 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668922730 (0x000000e49007056a)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 396 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0a 00 05 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668928303 (0x000000e490071b2f)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 440 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 89/255 available capacity 31250 32µs/s units
                02 00 59 12 7a                                   ..Y.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668948198 (0x000000e4900768e6)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 304 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID 58:2F:F7:67:7C:2E
        TSF: 0 (0x0000000000000000)
        IEs: len 175
            SSID: BingoBango
                42 69 6e 67 6f 42 61 6e 67 6f                    BingoBango      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            BSS load:  1 station(s) utilization 38/255 available capacity 0 32µs/s units
                01 00 26 00 00                                   ..&..           
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 00 00 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 00 17 ff ff ff 00 00 00 00 00 00 00 00 00 00  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                04 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 10 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668974292 (0x000000e49007ced4)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 376 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 85/255 available capacity 0 32µs/s units
                00 00 55 00 00                                   ..U..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668988823 (0x000000e490080797)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 396 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981668999500 (0x000000e49008314c)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 316 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00010000 
                01 03 00 08                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  2 station(s) utilization 82/255 available capacity 31250 32µs/s units
                02 00 52 12 7a                                   ..R.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 08 0c 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669013198 (0x000000e4900866ce)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 388 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 6C:4B:B4:0D:FA:34
        TSF: 0 (0x0000000000000000)
        IEs: len 258
            SSID: ATTgzky2WG
                41 54 54 67 7a 6b 79 32 57 47                    ATTgzky2WG      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US\x04
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 04 01 0b 1e                                US....          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 146/255 available capacity 0 32µs/s units
                00 00 92 00 00                                   .....           
            Current Operating Class: 81
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
            Supported Operating Class: 81
            Supported Operating Class: 83
            Supported Operating Class: 84
                51 0c 20 21 51 53 54                             Q. !QST         
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669023511 (0x000000e490088f17)
        Signal mBm: -8700
> Result: New Scan Results (0x22) len 372 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669034344 (0x000000e49008b968)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 440 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669040125 (0x000000e49008cffd)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 384 [multi]                    778.732022
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 24/255 available capacity 0 32µs/s units
                01 00 18 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669046583 (0x000000e49008e937)
        Signal mBm: -6000
> Result: New Scan Results (0x22) len 356 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669052261 (0x000000e49008ff65)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 384 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID DC:8D:8A:11:9F:24
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTsG7Uajq
                41 54 54 73 47 37 55 61 6a 71                    ATTsG7Uajq      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 31/255 available capacity 0 32µs/s units
                02 00 1f 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669066740 (0x000000e4900937f4)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 240 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                01 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669077521 (0x000000e490096211)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 384 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 76/255 available capacity 0 32µs/s units
                02 00 4c 00 00                                   ..L..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669083875 (0x000000e490097ae3)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 460 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 131/255 available capacity 0 32µs/s units
                01 00 83 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669090958 (0x000000e49009968e)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 428 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 54/255 available capacity 65535 32µs/s units
                00 00 36 ff ff                                   ..6..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669109969 (0x000000e49009e0d1)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 504 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 472
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 375
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   32 00000010 00000000 00000000 00000000 
                AID    33 -   64 00000000 00000000 00000000 00000000 
                AID    65 -   96 00000000 00000000 00000000 00000001 
                02 03 00 40 00 00 00 00 00 00 00 00 00 00 80     ...@........... 
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 54/255 available capacity 65535 32µs/s units
                06 00 36 ff ff                                   ..6..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669126375 (0x000000e4900a20e7)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 440 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00011000 
                00 01 01 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669134656 (0x000000e4900a4140)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 452 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669147312 (0x000000e4900a72b0)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 488 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669155385 (0x000000e4900a9239)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 452 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669169604 (0x000000e4900ac9c4)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669184031 (0x000000e4900b021f)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 488 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 37/255 available capacity 0 32µs/s units
                04 00 25 00 00                                   ..%..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669197573 (0x000000e4900b3705)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 428 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 15/255 available capacity 65535 32µs/s units
                00 00 0f ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 87 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669209187 (0x000000e4900b6463)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 492 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 15/255 available capacity 65535 32µs/s units
                05 00 0f ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 04 64 00 00 25 86 00 00  .P.......d..%...
                43 64 5e 00 63 53 2f 00                          Cd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669229812 (0x000000e4900bb4f4)
        Signal mBm: -7200
> Result: New Scan Results (0x22) len 516 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669242208 (0x000000e4900be560)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 556 [multi]                    778.732113
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669255072 (0x000000e4900c17a0)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 412 [multi]                    778.732352
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669263614 (0x000000e4900c38fe)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 484 [multi]                    778.732352
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 29/255 available capacity 0 32µs/s units
                02 00 1d 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669274968 (0x000000e4900c6558)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    778.732352
    Generation: 1084 (0x0000043c)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 37/255 available capacity 65535 32µs/s units
                02 00 25 ff ff                                   ..%..           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8a 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 981669290854 (0x000000e4900ca366)
        Signal mBm: -6700
> Complete: Get Scan (0x20) len 4 [multi]                            778.732567
    Status: 0
< Request: Trigger Scan (0x21) len 128 [ack]                         778.734726
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Event: Trigger Scan (0x21) len 148                                 778.735926
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> Response: Trigger Scan (0x21) len 4 [0x100]                        778.735961
    Status: Success (0)
> Event: New Scan Results (0x22) len 148                             784.373189
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 88
        0: 2417 (0x00000971)
        1: 2422 (0x00000976)
        2: 2427 (0x0000097b)
        3: 2432 (0x00000980)
        4: 2442 (0x0000098a)
        5: 2447 (0x0000098f)
        6: 2452 (0x00000994)
        7: 2457 (0x00000999)
        8: 2467 (0x000009a3)
        9: 2472 (0x000009a8)
        10: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Flags: Mask: 0x00000002 len 4
            Flush
> RTNL: New Link (0x10) len 48                                       784.373242
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       784.373260
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       784.373274
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       784.373292
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       784.373314
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        784.373488
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310996176 (0x000000e5e0523ad0)
        Signal mBm: -4700
> Result: New Scan Results (0x22) len 428 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310986853 (0x000000e5e0521665)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 372 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 40/255 available capacity 0 32µs/s units
                02 00 28 00 00                                   ..(..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310966436 (0x000000e5e051c6a4)
        Signal mBm: -4900
> Result: New Scan Results (0x22) len 480 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310879457 (0x000000e5e05072e1)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 372 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 45/255 available capacity 0 32µs/s units
                00 00 2d 00 00                                   ..-..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310947947 (0x000000e5e0517e6b)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 388 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 93/255 available capacity 0 32µs/s units
                00 00 5d 00 00                                   ..]..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310923103 (0x000000e5e0511d5f)
        Signal mBm: -6200
> Result: New Scan Results (0x22) len 392 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310940134 (0x000000e5e0515fe6)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 380 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 41/255 available capacity 0 32µs/s units
                00 00 29 00 00                                   ..)..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310956124 (0x000000e5e0519e5c)
        Signal mBm: -3300
> Result: New Scan Results (0x22) len 396 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID 1C:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 268
            SSID: TPL4444
                54 50 4c 34 34 34 34                             TPL4444         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0a 00 05 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 22
                Microsoft (00:50:f2) type: 01
                    WPA:
                        Version: 1(0001)
                        Group Data Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        Pairwise Cipher Suite: len 4
                            CCMP (00:50:f2) suite  04
                        AKM Suite: len 4
                            PSK; RSNA PSK (00:50:f2) suite  02
                00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04  .P.....P.....P..
                01 00 00 50 f2 02                                ...P..          
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310973780 (0x000000e5e051e354)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 376 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 344
        BSSID EC:08:6B:2C:64:C5
        TSF: 0 (0x0000000000000000)
        IEs: len 247
            SSID: TP-LINK_64C5
                54 50 2d 4c 49 4e 4b 5f 36 34 43 35              TP-LINK_64C5    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Tag 47: len 1
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            BSS load:  0 station(s) utilization 83/255 available capacity 0 32µs/s units
                00 00 53 00 00                                   ..S..           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bd 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                01 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                05 00 08 00 00 00 00 40                          .......@        
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 ce c4 c5 d9 90 e6 25 4b 21 4a e1 65 75 e5  ........%K!J.eu.
                77 db 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  w..<....I...7*..
                20                                                               
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 11: Statistics Measurement
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                72 08 01 00 00                                   r....           
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: cec4c5d9-90e6-254b-214a-e16575e577db
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5137 (0x1411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311003676 (0x000000e5e052581c)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 396 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311012686 (0x000000e5e0527b4e)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 316 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 284
        BSSID E0:63:DA:15:96:4D
        TSF: 0 (0x0000000000000000)
        IEs: len 186
            SSID: Butchie
                42 75 74 63 68 69 65                             Butchie         
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0(B) 9.0 12.0(B) 18.0 Mbit/s
                82 84 8b 96 8c 12 98 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 01010000 
                00 03 00 0a                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0(B) 36.0 48.0 54.0 Mbit/s
                b0 48 60 6c                                      .H`l            
            BSS load:  2 station(s) utilization 88/255 available capacity 31250 32µs/s units
                02 00 58 12 7a                                   ..X.z           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 11: Reserved
                01 08 0c 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit 62: Opmode Notification
                00 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 19
                OUI: 00:15:6d type:00
                00 15 6d 00 01 01 00 01 02 57 e5 81 06 e0 63 da  ..m......W....c.
                14 96 4d                                         ..M             
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311019769 (0x000000e5e05296f9)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 372 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID EE:63:9C:F8:85:DC
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 27 dB link margin  0 dB
                1b 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       1
                Barker preamble mode 0
                02                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8a 33 ea ff 00 00 ea ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 40 00 00 00                                ..@...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311339925 (0x000000e5e0577995)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 440 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311347529 (0x000000e5e0579749)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 384 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 43/255 available capacity 0 32µs/s units
                01 00 2b 00 00                                   ..+..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311038623 (0x000000e5e052e09f)
        Signal mBm: -5800
> Result: New Scan Results (0x22) len 240 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311046592 (0x000000e5e052ffc0)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 384 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 67/255 available capacity 0 32µs/s units
                02 00 43 00 00                                   ..C..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311058467 (0x000000e5e0532e23)
        Signal mBm: -8200
> Result: New Scan Results (0x22) len 460 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 86/255 available capacity 0 32µs/s units
                01 00 56 00 00                                   ..V..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311067061 (0x000000e5e0534fb5)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 428 [multi]                    784.373583
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 48/255 available capacity 65535 32µs/s units
                00 00 30 ff ff                                   ..0..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311190342 (0x000000e5e0553146)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 492 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 48/255 available capacity 65535 32µs/s units
                06 00 30 ff ff                                   ..0..           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311204040 (0x000000e5e05566c8)
        Signal mBm: -4800
> Result: New Scan Results (0x22) len 440 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311117165 (0x000000e5e054136d)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 452 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311213727 (0x000000e5e0558c9f)
        Signal mBm: -8500
> Result: New Scan Results (0x22) len 488 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311135134 (0x000000e5e054599e)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 452 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311171019 (0x000000e5e054e5cb)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 452 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311180290 (0x000000e5e0550a02)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 488 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 51/255 available capacity 0 32µs/s units
                04 00 33 00 00                                   ..3..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311224092 (0x000000e5e055b51c)
        Signal mBm: -7600
> Result: New Scan Results (0x22) len 428 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 22/255 available capacity 65535 32µs/s units
                00 00 16 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 87 00 04 64 00 00 25 86 00 00  .P.......d..%...
                44 64 5e 00 63 53 2f 00                          Dd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311241540 (0x000000e5e055f944)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 492 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 10000000 
                02 03 00 01                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 22/255 available capacity 65535 32µs/s units
                05 00 16 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 04 64 00 00 25 86 00 00  .P.......d..%...
                43 64 5e 00 63 53 2f 00                          Cd^.cS/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311259352 (0x000000e5e0563ed8)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 516 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311269352 (0x000000e5e05665e8)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 556 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311279091 (0x000000e5e0568bf3)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 412 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311301800 (0x000000e5e056e4a8)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 484 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 29/255 available capacity 0 32µs/s units
                02 00 1d 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311314612 (0x000000e5e05716b4)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 35/255 available capacity 65535 32µs/s units
                02 00 23 ff ff                                   ..#..           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8a 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311327529 (0x000000e5e0574929)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 372 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID C0:89:AB:BC:03:B0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTBUimK8s
                41 54 54 42 55 69 6d 4b 38 73                    ATTBUimK8s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 26 dB link margin  0 dB
                1a 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 46/255 available capacity 0 32µs/s units
                04 00 2e 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                07 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987310930811 (0x000000e5e0513b7b)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 384 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 109/255 available capacity 0 32µs/s units
                01 00 6d 00 00                                   ..m..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311027478 (0x000000e5e052b516)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 460 [multi]                    784.373674
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 49/255 available capacity 0 32µs/s units
                02 00 31 00 00                                   ..1..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 987311083155 (0x000000e5e0538e93)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 460 [multi]                    784.374007
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 75/255 available capacity 0 32µs/s units
                02 00 4b 00 00                                   ..K..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 987311100342 (0x000000e5e053d1b6)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 524 [multi]                    784.374007
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 987311152894 (0x000000e5e0549efe)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 556 [multi]                    784.374007
    Generation: 1124 (0x00000464)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 4 (0x00000004)
        Timestamp: 987311161488 (0x000000e5e054c090)
        Signal mBm: -8700
> Complete: Get Scan (0x20) len 4 [multi]                            784.374247
    Status: 0
< RTNL: Get Link (0x12) len 24 [request,dump]                        784.398562
    Flags: 769 (0x301)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             784.398677
    Flags: 2 (0x002)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 12567
> RTNL: New Link (0x10) len 1424 [multi]                             784.398677
    Flags: 2 (0x002)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 12567
> RTNL: New Link (0x10) len 1428 [multi]                             784.398746
    Flags: 2 (0x002)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 12567
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1424 [multi]                             784.398746
    Flags: 2 (0x002)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 12567
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 02 01 00 00 ae 7f 00 00 2a 5d 01 00  N...........*]..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 4
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             784.398869
    Flags: 2 (0x002)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 12567
> RTNL: Done (0x03) len 4 [multi]                                    784.398941
    Flags: 2 (0x002)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 12567
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            784.399085
    Flags: 2 (0x002)
    Sequence number: 1704335804 (0x659619bc)
    Port ID: 12567
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            784.399134
    Flags: 2 (0x002)
    Sequence number: 1704335804 (0x659619bc)
    Port ID: 12567
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    784.399163
    Flags: 2 (0x002)
    Sequence number: 1704335804 (0x659619bc)
    Port ID: 12567
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                          784.414116
    Interface Index: 2 (0x00000002)
> Response: Get Interface (0x05) len 4                               784.414151
    Status: No such device (19)
> RTNL: New Address (0x14) len 60 [multi]                            784.511570
    Flags: 2 (0x002)
    Sequence number: 1704335802 (0x659619ba)
    Port ID: 12577
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            784.511632
    Flags: 2 (0x002)
    Sequence number: 1704335802 (0x659619ba)
    Port ID: 12577
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    784.511660
    Flags: 2 (0x002)
    Sequence number: 1704335802 (0x659619ba)
    Port ID: 12577
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            784.782102
    Flags: 2 (0x002)
    Sequence number: 1704335802 (0x659619ba)
    Port ID: 12594
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            784.782158
    Flags: 2 (0x002)
    Sequence number: 1704335802 (0x659619ba)
    Port ID: 12594
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    784.782187
    Flags: 2 (0x002)
    Sequence number: 1704335802 (0x659619ba)
    Port ID: 12594
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            785.030566
    Flags: 2 (0x002)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 12596
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            785.030747
    Flags: 2 (0x002)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 12596
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    785.031038
    Flags: 2 (0x002)
    Sequence number: 1704335803 (0x659619bb)
    Port ID: 12596
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            786.189680
    Flags: 2 (0x002)
    Sequence number: 1704335804 (0x659619bc)
    Port ID: 12630
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            786.189777
    Flags: 2 (0x002)
    Sequence number: 1704335804 (0x659619bc)
    Port ID: 12630
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    786.189806
    Flags: 2 (0x002)
    Sequence number: 1704335804 (0x659619bc)
    Port ID: 12630
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            787.781505
    Flags: 2 (0x002)
    Sequence number: 1704335805 (0x659619bd)
    Port ID: 12637
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            787.781559
    Flags: 2 (0x002)
    Sequence number: 1704335805 (0x659619bd)
    Port ID: 12637
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    787.781591
    Flags: 2 (0x002)
    Sequence number: 1704335805 (0x659619bd)
    Port ID: 12637
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            788.491519
    Flags: 2 (0x002)
    Sequence number: 1704335806 (0x659619be)
    Port ID: 12640
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            788.491573
    Flags: 2 (0x002)
    Sequence number: 1704335806 (0x659619be)
    Port ID: 12640
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    788.491601
    Flags: 2 (0x002)
    Sequence number: 1704335806 (0x659619be)
    Port ID: 12640
    Status: 0
> RTNL: New Address (0x14) len 60 [multi]                            789.198489
    Flags: 2 (0x002)
    Sequence number: 1704335807 (0x659619bf)
    Port ID: 12681
    IFA Family: AF_INET
    IFA Prefixlen: 24
    IFA Index: 4
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 192.168.5.1
        Local Address: 192.168.5.1
        Label (len:4): ap0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9845, cstamp: 9845
> RTNL: New Address (0x14) len 64 [multi]                            789.198545
    Flags: 2 (0x002)
    Sequence number: 1704335807 (0x659619bf)
    Port ID: 12681
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 4
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::ba27:ebff:fe00:0
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 9856, cstamp: 9856
        Flags: (0x80) [permanent]
        Reserved: len 1
> RTNL: Done (0x03) len 4 [multi]                                    789.198584
    Flags: 2 (0x002)
    Sequence number: 1704335807 (0x659619bf)
    Port ID: 12681
    Status: 0
< RTNL: Get Link (0x12) len 16 [request,ack,dump]                    790.192611
    Flags: 773 (0x305)
    Sequence number: 993130770 (0x3b31f912)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             790.192713
    Flags: 2 (0x002)
    Sequence number: 993130770 (0x3b31f912)
    Port ID: 12694
> RTNL: New Link (0x10) len 1416 [multi]                             790.192713
    Flags: 2 (0x002)
    Sequence number: 993130770 (0x3b31f912)
    Port ID: 12694
> RTNL: New Link (0x10) len 1420 [multi]                             790.192778
    Flags: 2 (0x002)
    Sequence number: 993130770 (0x3b31f912)
    Port ID: 12694
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1416 [multi]                             790.192778
    Flags: 2 (0x002)
    Sequence number: 993130770 (0x3b31f912)
    Port ID: 12694
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 05 01 00 00 ae 7f 00 00 a8 5d 01 00  N............]..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             790.192834
    Flags: 2 (0x002)
    Sequence number: 993130770 (0x3b31f912)
    Port ID: 12694
> RTNL: Done (0x03) len 4 [multi]                                    790.192942
    Flags: 2 (0x002)
    Sequence number: 993130770 (0x3b31f912)
    Port ID: 12694
    Status: 0
< RTNL: Get Link (0x12) len 16 [request,ack,dump]                    790.234257
    Flags: 773 (0x305)
    Sequence number: 993172413 (0x3b329bbd)
    Port ID: 0
> RTNL: New Link (0x10) len 1372 [multi]                             790.234358
    Flags: 2 (0x002)
    Sequence number: 993172413 (0x3b329bbd)
    Port ID: 12698
> RTNL: New Link (0x10) len 1416 [multi]                             790.234358
    Flags: 2 (0x002)
    Sequence number: 993172413 (0x3b329bbd)
    Port ID: 12698
> RTNL: New Link (0x10) len 1420 [multi]                             790.234422
    Flags: 2 (0x002)
    Sequence number: 993172413 (0x3b329bbd)
    Port ID: 12698
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        LinkMode: userspace controlled (1)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:52:cc:d0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1416 [multi]                             790.234422
    Flags: 2 (0x002)
    Sequence number: 993172413 (0x3b329bbd)
    Port ID: 12698
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 4
    IFLA ChangeMask: 0
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:4): ap0
        Txqlen: 4000 (0x00000fa0)
        OperState: up (6)
        LinkMode: kernel controlled (0)
        MTU: 1500 (0x000005dc)
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Qdisc (len:11): pfifo_fast
        Reserved: len 4
        Reserved: len 4
        Reserved: len 4
        Reserved: len 1
        Map: len 32
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Interface Address: b8:27:eb:0:0:0
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 200
        Stats: len 96
            4e 01 00 00 05 01 00 00 ae 7f 00 00 a8 5d 01 00  N............]..
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            5c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  \...............
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
        Reserved: len 8
        Reserved: len 6
        Reserved: len 788
        Reserved: len 12
        Reserved: len 5
> RTNL: New Link (0x10) len 1368 [multi]                             790.234479
    Flags: 2 (0x002)
    Sequence number: 993172413 (0x3b329bbd)
    Port ID: 12698
> RTNL: Done (0x03) len 4 [multi]                                    790.234588
    Flags: 2 (0x002)
    Sequence number: 993172413 (0x3b329bbd)
    Port ID: 12698
    Status: 0
< Request: Trigger Scan (0x21) len 352 [ack]                         859.814406
    Wireless Device: 1 (0x0000000000000001)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
> Event: Trigger Scan (0x21) len 372                                 859.815652
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> Response: Trigger Scan (0x21) len 4 [0x100]                        859.815686
    Status: Success (0)
> Event: New Scan Results (0x22) len 372                             865.451759
    Wiphy: 0 (0x00000000)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    Scan SSIDs: len 0
    Scan Frequencies: len 320
        0: 5180 (0x0000143c)
        1: 5200 (0x00001450)
        2: 5210 (0x0000145a)
        3: 5220 (0x00001464)
        4: 5240 (0x00001478)
        5: 5260 (0x0000148c)
        6: 5280 (0x000014a0)
        7: 5300 (0x000014b4)
        8: 5320 (0x000014c8)
        9: 5500 (0x0000157c)
        10: 5520 (0x00001590)
        11: 5540 (0x000015a4)
        12: 5560 (0x000015b8)
        13: 5580 (0x000015cc)
        14: 5600 (0x000015e0)
        15: 5620 (0x000015f4)
        16: 5640 (0x00001608)
        17: 5660 (0x0000161c)
        18: 5680 (0x00001630)
        19: 5700 (0x00001644)
        20: 5720 (0x00001658)
        21: 5745 (0x00001671)
        22: 5765 (0x00001685)
        23: 5785 (0x00001699)
        24: 5805 (0x000016ad)
        25: 5825 (0x000016c1)
        26: 2412 (0x0000096c)
        27: 2417 (0x00000971)
        28: 2422 (0x00000976)
        29: 2427 (0x0000097b)
        30: 2432 (0x00000980)
        31: 2437 (0x00000985)
        32: 2442 (0x0000098a)
        33: 2447 (0x0000098f)
        34: 2452 (0x00000994)
        35: 2457 (0x00000999)
        36: 2462 (0x0000099e)
        37: 2467 (0x000009a3)
        38: 2472 (0x000009a8)
        39: 2484 (0x000009b4)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit 19: BSS transition
            00 00 08 00 00 00 00 00 00 01                    ..........      
> RTNL: New Link (0x10) len 48                                       865.451817
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       865.451844
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       865.451861
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       865.451880
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
> RTNL: New Link (0x10) len 48                                       865.451903
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 3
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Wireless: len 16
            10 00 19 8b 00 00 00 00 00 00 00 00 00 00 00 00  ................
< Request: Get Scan (0x20) len 12 [ack,0x300]                        865.452026
    Wireless Device: 1 (0x0000000000000001)
> Result: New Scan Results (0x22) len 440 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:3A:7A:0C:83:0B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: 
                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 18 dB link margin  0 dB
                12 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Tag 47: len 1
                04                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 4 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 08 00                                      ....            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  4: HT-Greenfield
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 2
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                bc 19 16 ff ff 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: non-HT mixed mode
                Information: bit 12: OBSS non-HT STAs present
                0b 00 13 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 62: Opmode Notification
                04 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 4c 00 00                       ......L..       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 5
                Microsoft (00:50:f2) type: 05
                00 50 f2 05 00                                   .P...           
            Vendor specific: len 82
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 22 21 02 03 04 05 06 07 08 09 ac 3a 7a 0c  .."!.........:z.
                83 0b 10 49 00 06 00 37 2a 00 01 20 10 54 00 08  ...I...7*.. .T..
                00 06 00 50 f2 04 00 01 10 11 00 16 44 49 52 45  ...P........DIRE
                43 54 2d 72 6f 6b 75 2d 38 39 34 2d 37 32 42 44  CT-roku-894-72BD
                42 37                                            B7              
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 27 2b 03 06 00 ae 3a 7a 0c  Po.....'+....:z.
                83 09                                            ..              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 96           Po........D..   
            WSC Payload: len 78
                Version: 10
                WSC State: Configured
                UUID-E: 22210203-0405-0607-0809-ac3a7a0c830b
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Primary Device Type: Network Infrastructure
                    OUI: 0050f204
                    SubCategory: 01
                Device Name: DIRECT-roku-894-72BDB7
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Client Discoverability
                    Concurrent Operation
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                    Persistent Reconnect
                P2P Device ID: ae:3a:7a:0c:83:09
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 150 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389537399 (0x000000f8c0fa9677)
        Signal mBm: -4600
> Result: New Scan Results (0x22) len 428 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID A4:97:33:DC:7C:25
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                0b 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 11
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 0b 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 04 fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                00 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389561513 (0x000000f8c0faf4a9)
        Signal mBm: -6600
> Result: New Scan Results (0x22) len 372 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 18:9C:27:25:D2:70
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 1 offset 0
                AID     1 -    8 00000000 
                00 03 01 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 27/255 available capacity 0 32µs/s units
                02 00 1b 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                04 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 04 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389603857 (0x000000f8c0fb9a11)
        Signal mBm: -5100
> Result: New Scan Results (0x22) len 480 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 448
        BSSID E8:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 349
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000010 
                00 01 00 40                                      ...@            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2d 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  -...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 81 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 32 58 81 33 fa ff 00 00 fa  ..L....2X.3.....
                ff 00 20 c0 05 00 00 00 fc ff                    .. .......      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 e8 9f 80 16 5e d7     .............^. 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389487763 (0x000000f8c0f9d493)
        Signal mBm: -6400
> Result: New Scan Results (0x22) len 372 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID 84:BB:69:E3:2C:C0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 50/255 available capacity 0 32µs/s units
                00 00 32 00 00                                   ..2..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389519951 (0x000000f8c0fa524f)
        Signal mBm: -6500
> Result: New Scan Results (0x22) len 388 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 356
        BSSID 10:C4:CA:A6:79:F4
        TSF: 0 (0x0000000000000000)
        IEs: len 259
            SSID: HiltonHead2025
                48 69 6c 74 6f 6e 48 65 61 64 32 30 32 35        HiltonHead2025  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 23 dB link margin  0 dB
                17 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 62/255 available capacity 0 32µs/s units
                00 00 3e 00 00                                   ..>..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                07 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389890835 (0x000000f8c0fffb13)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 392 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 360
        BSSID EE:9F:80:16:5E:D7
        TSF: 0 (0x0000000000000000)
        IEs: len 263
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 8
                08                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 8
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                08 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                05 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 59 81 33 fa ff 00 00 fa ff 00 20              .Y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff 00 00 00 00 00 00 ee 9f 80 16 5e d7     .............^. 
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2447 (0x0000098f)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389471565 (0x000000f8c0f9954d)
        Signal mBm: -6300
> Result: New Scan Results (0x22) len 380 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 348
        BSSID 6C:4B:B4:19:7A:14
        TSF: 0 (0x0000000000000000)
        IEs: len 249
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 9
                09                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  0 station(s) utilization 37/255 available capacity 0 32µs/s units
                00 00 25 00 00                                   ..%..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 9
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                09 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 09 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 00 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2452 (0x00000994)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389495472 (0x000000f8c0f9f2b0)
        Signal mBm: -3900
> Result: New Scan Results (0x22) len 396 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 364
        BSSID A0:63:91:89:E0:27
        TSF: 0 (0x0000000000000000)
        IEs: len 267
            SSID: NETGEAR45
                4e 45 54 47 45 41 52 34 35                       NETGEAR45       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 00 1b ff ff 00 00 00 00 00 00 00 00 00 00 01  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 62: Opmode Notification
                01 00 00 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 30
                Epigram (00:90:4c) type: 33
                00 90 4c 33 2c 00 1b ff ff 00 00 00 00 00 00 00  ..L3,...........
                00 00 00 01 00 00 00 00 00 00 00 00 00 00        ..............  
            Vendor specific: len 26
                Epigram (00:90:4c) type: 34
                00 90 4c 34 01 08 04 00 00 00 00 00 00 00 00 00  ..L4............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 01 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389596096 (0x000000f8c0fb7bc0)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 440 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID 2C:EA:DC:D6:F4:AA
        TSF: 0 (0x0000000000000000)
        IEs: len 310
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 6
                06                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            TPC report: transmit power 30 dB link margin  0 dB
                1e 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 6
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                06 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                92 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 6
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 06 00 fc ff                                   .....           
            HE Capabilities: len 28
                0d 01 08 9a 40 10 00 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 1b 1c c7 71 1c c7 71              ........q..q    
            Tag 292: len 6
                f4 3f 00 1d fc ff                                .?....          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2437 (0x00000985)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389452190 (0x000000f8c0f9499e)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 384 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:2C:30:44
        TSF: 0 (0x0000000000000000)
        IEs: len 253
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 3
                03                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 25 dB link margin  0 dB
                19 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 19/255 available capacity 0 32µs/s units
                01 00 13 00 00                                   .....           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                03 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 03 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389628909 (0x000000f8c0fbfbed)
        Signal mBm: -6800
> Result: New Scan Results (0x22) len 240 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 208
        BSSID FA:8F:CA:61:7E:9C
        TSF: 0 (0x0000000000000000)
        IEs: len 109
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 4
                04                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -   16 00000000 00000000 
                00 02 00 00 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 01 03 ff 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Operation:
                Primary channel 4
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                04 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
        Beacon Interval: 100 (0x0064)
        Capability: 1057 (0x0421)
            ESS
            ShortPreamble
            ShortSlotTime
        Frequency: 2427 (0x0000097b)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389621773 (0x000000f8c0fbe00d)
        Signal mBm: -6700
> Result: New Scan Results (0x22) len 384 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID CC:AB:2C:DD:DB:94
        TSF: 0 (0x0000000000000000)
        IEs: len 255
            SSID: ATTZSD3VS2
                41 54 54 5a 53 44 33 56 53 32                    ATTZSD3VS2      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 5
                05                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 94/255 available capacity 0 32µs/s units
                02 00 5e 00 00                                   ..^..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 5
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                05 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 91 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 05 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2432 (0x00000980)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389883283 (0x000000f8c0ffdd93)
        Signal mBm: -7700
> Result: New Scan Results (0x22) len 460 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID 6C:4B:B4:19:7A:18
        TSF: 0 (0x0000000000000000)
        IEs: len 332
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US\x04
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 04 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US.$..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 19 dB link margin  0 dB
                13 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 47/255 available capacity 0 32µs/s units
                01 00 2f 00 00                                   ../..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 115
            Supported Operating Class: 116
            Supported Operating Class: 117
            Supported Operating Class: 118
            Supported Operating Class: 119
            Supported Operating Class: 120
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 73 74 75 76 77 78 80 81     .......stuvwx.. 
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 29 29 29                                      .)))            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 1a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389661669 (0x000000f8c0fc7be5)
        Signal mBm: -4400
> Result: New Scan Results (0x22) len 428 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 18:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 22/255 available capacity 65535 32µs/s units
                00 00 16 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                2c 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389685367 (0x000000f8c0fcd877)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 492 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 06:9C:27:25:D2:73
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATTcVY9ZWa
                41 54 54 63 56 59 39 5a 57 61                    ATTcVY9ZWa      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 6
                AID     1 -    8 01000000 
                02 03 0c 02                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  6 station(s) utilization 22/255 available capacity 65535 32µs/s units
                06 00 16 ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8c 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 31 29 18 68  ...7*.. .X..1).h
                22 ba 22 1e 53 f7 3d e2 fd 21 28 d9 00 01 01 01  ".".S.=..!(.....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    31 29 18 68 22 ba 22 1e 53 f7 3d e2 fd 21 28 d9  1).h".".S.=..!(.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389736252 (0x000000f8c0fd9f3c)
        Signal mBm: -5000
> Result: New Scan Results (0x22) len 440 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID E8:9F:80:16:5E:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 312
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00011000 
                00 01 00 18                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 00  US $..(..,..0...
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 58 89 33 fa ff 00 00 fa ff 00 20              2X.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 4
                02 3c 3c 3c                                      .<<<            
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 ef 12 00 00                                ......          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 02 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d8 00 00 00 00 00 00     .......^....... 
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389726513 (0x000000f8c0fd7931)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 452 [multi]                    865.452169
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID EE:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 323
            SSID: Fijian Lotus
                46 69 6a 69 61 6e 20 4c 6f 74 75 73              Fijian Lotus    
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389702815 (0x000000f8c0fd1c9f)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 488 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID 4E:63:9C:F8:85:DD
        TSF: 0 (0x0000000000000000)
        IEs: len 357
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 29 dB link margin  0 dB
                1d 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 48: UTF-8 SSID
                Capability: bit 49: QMF Activated
                Capability: bit 51: Robust AV Streaming
                Capability: bit 53: Mesh GCR
                Capability: bit 54: SCS
                Capability: bit 56: Alternate EDCA
                Capability: bit 57: Unprotected TXOP Negotiation
                Capability: bit 58: Protected TXOP Negotiation
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 6b 47                          .....@kG        
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 79 8b 33 aa ff 00 00 aa ff 00 20              .y.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 00 03 03 00 00 00  ................
                04 01 00 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 46 00 00 00                                ..F...          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389712398 (0x000000f8c0fd420e)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 452 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:5E:52:97
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 36 35 22 20  ...7*.. ....65" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 5e  Po.....!.......^
                52 97                                            R.              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 65" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:5e:52:97
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389766044 (0x000000f8c0fe139c)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 452 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 420
        BSSID C2:D2:F3:E6:FB:43
        TSF: 0 (0x0000000000000000)
        IEs: len 324
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            Error decoding Country IE len 81: Invalid argument (-22)
                55 53 20 01 0b 80 24 01 80 28 01 80 2c 01 80 30  US ...$..(..,..0
                01 80 34 01 80 38 01 80 3c 01 80 40 01 80 64 01  ..4..8..<..@..d.
                80 68 01 80 6c 01 80 70 01 80 74 01 80 78 01 80  .h..l..p..t..x..
                7c 01 80 80 01 80 84 01 80 88 01 80 8c 01 80 90  |...............
                01 80 95 01 80 99 01 80 9d 01 80 a1 01 80 a5 01  ................
                80                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            Current Operating Class: 115
                73 00                                            s.              
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 2 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS set: Rx Highest data rate: 300 Mbit/s
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                2c 09 13 ff ff 00 00 00 00 00 00 00 00 2c 01 01  ,............,..
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                2c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5d 00 61 11 2e 00                          BC].a...        
            Vendor specific: len 55
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 11 00 0f 35 35 22 20  ...7*.. ....55" 
                54 43 4c 20 52 6f 6b 75 20 54 56 10 54 00 08 00  TCL Roku TV.T...
                07 00 50 f2 04 00 01                             ..P....         
            Vendor specific: len 22
                OUI: c8:3a:6b type:01
                c8 3a 6b 01 01 10 34 38 3c 40 64 68 6c 70 74 78  .:k...48<@dhlptx
                7c 80 84 88 8c 90                                |.....          
            Vendor specific: len 18
                Wi-Fi Alliance (50:6f:9a) type: 09
                50 6f 9a 09 02 02 00 21 0b 03 06 00 c2 d2 f3 e6  Po.....!........
                fb 43                                            .C              
            Vendor specific: len 13
                Wi-Fi Alliance (50:6f:9a) type: 0a
                50 6f 9a 0a 00 00 06 01 11 1c 44 00 32           Po........D.2   
            WSC Payload: len 51
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Device Name: 55" TCL Roku TV
                Primary Device Type: Displays
                    OUI: 0050f204
                    SubCategory: 01
            P2P Attributes: len 14
                P2P Device Capability:
                    Service Discovery
                    P2P Invitation Procedure
                P2P Group Capability:
                    P2P Group Owner
                    Persistent P2P Group
                    Intra-BSS Distribution
                P2P Device ID: c2:d2:f3:e6:fb:43
            WFD Payload: len 9
                WFD Device Information:
                    Device Type: Primary sink
                    Session Availability: Available for WFD Session
                    Preferred Connectivity (PC): P2P
                    Content Protection using HDCP system 2.x supported
                WFD Device Information: Session Management Control port 7236
                WFD Device Information: Maximum Throughput 50 Mbps
        Beacon Interval: 100 (0x0064)
        Capability: 17 (0x0011)
            ESS
            Privacy
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389775367 (0x000000f8c0fe3807)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 488 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 456
        BSSID F8:9B:6E:2C:30:4C
        TSF: 0 (0x0000000000000000)
        IEs: len 359
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  4 station(s) utilization 53/255 available capacity 0 32µs/s units
                04 00 35 00 00                                   ..5..           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 153
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                99 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 9b 00 00 00                                   .....           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 2c fc ff                                ...,..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26  .9"`~....X.h...&
                94 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 04 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    39 22 60 7e 91 9b f6 9f 58 1b 68 f9 d2 b1 26 94  9"`~....X.h...&.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5765 (0x00001685)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389810835 (0x000000f8c0fec293)
        Signal mBm: -7500
> Result: New Scan Results (0x22) len 428 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 396
        BSSID 84:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 300
            SSID: 
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  0 station(s) utilization 12/255 available capacity 65535 32µs/s units
                00 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                9d 05 02 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 88 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389851981 (0x000000f8c0ff634d)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 492 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 460
        BSSID 86:BB:69:E3:2C:C3
        TSF: 0 (0x0000000000000000)
        IEs: len 364
            SSID: ATT3zFM5gH
                41 54 54 33 7a 46 4d 35 67 48                    ATT3zFM5gH      
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 7
                AID     1 -    8 00000100 
                02 03 0e 20                                      ...             
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e 00              ............    
            BSS load:  5 station(s) utilization 12/255 available capacity 65535 32µs/s units
                05 00 0c ff ff                                   .....           
            Tag 69: len 11
                85 00 00 00 00 00 00 00 00 00 00                 ...........     
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 1e 1e 1e 00                                   .....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  ................
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 82 00 03 64 00 00 27 a4 00 00  .P.......d..'...
                41 43 5e 00 61 32 2f 00                          AC^.a2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 79 c3 3f aa ff 00 00 aa ff 00 00              .y.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 c2 07 f7 00 06  .&........%.....
                01 9b 64 00 3f cb 00 00 00 07 00 00 00 00        ..d.?.........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 52
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 58 00 18 f6 71 78 7f  ...7*.. .X...qx.
                66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30 00 01 01 01  f....~..pO.0....
                03 00 7f c5                                      ....            
            WSC Payload: len 48
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    f6 71 78 7f 66 a3 84 9e 0e 7e 90 cc 70 4f 9c 30  .qx.f....~..pO.0
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389861460 (0x000000f8c0ff8854)
        Signal mBm: -6900
> Result: New Scan Results (0x22) len 516 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 484
        BSSID A4:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 385
            SSID: TheRev
                54 68 65 52 65 76                                TheRev          
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                9d 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                e3                                               .               
            Tag 294: len 13
                01 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 81 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389828231 (0x000000f8c0ff0687)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 556 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 86:97:33:DC:7C:26
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 157
                9d                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 28 dB link margin  0 dB
                1c 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 157
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                9d 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3b fc ff                                .?.;..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                01 08 a9 ff 2f a9 ff 45 75 ff 65 75 ff           ..../..Eu.eu.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 01 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5785 (0x00001699)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389841721 (0x000000f8c0ff3b39)
        Signal mBm: -8300
> Result: New Scan Results (0x22) len 412 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 380
        BSSID E8:9F:80:16:5E:D9
        TSF: 0 (0x0000000000000000)
        IEs: len 284
            SSID: SuperFastW
                53 75 70 65 72 46 61 73 74 57                    SuperFastW      
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 161
                a1                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00111000 
                00 01 00 1c                                      ....            
            Country: US 
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 95 01 1e 99 01 1e 9d 01 1e a1 01 1e a5  US .............
                01 1e                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 08 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  o...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 161
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                a1 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                32 78 89 33 fa ff 00 00 fa ff 00 20              2x.3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 155
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 9b 00 fc ff                                   .....           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 8
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00                          ........        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 8c 16  ......ILQ...r...
                00 00 56 00 00 00                                ..V...          
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 8
                OUI: 08:86:3b type:00
                08 86 3b 00 00 01 00 03                          ..;.....        
            Vendor specific: len 31
                OUI: 8c:fd:f0 type:00
                8c fd f0 00 00 01 01 00 00 01 00 00 00 00 00 00  ................
                00 ff ff e8 9f 80 16 5e d9 00 00 00 00 00 00     .......^....... 
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5805 (0x000016ad)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389871096 (0x000000f8c0ffadf8)
        Signal mBm: -8100
> Result: New Scan Results (0x22) len 484 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 452
        BSSID 6C:4B:B4:19:7A:1C
        TSF: 0 (0x0000000000000000)
        IEs: len 355
            SSID: spg4
                73 70 67 34                                      spg4            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 16 dB link margin  0 dB
                10 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 27/255 available capacity 0 32µs/s units
                02 00 1b 00 00                                   .....           
            Current Operating Class: 128
            Supported Operating Class: 3
            Supported Operating Class: 4
            Supported Operating Class: 5
            Supported Operating Class: 24
            Supported Operating Class: 25
            Supported Operating Class: 29
            Supported Operating Class: 30
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 03 04 05 18 19 1d 1e 80 81                    ..........      
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 100
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                64 05 06 00 00 00 00 00 00 00 00 00 00 00 00 00  d...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 6a 00 00 00                                   .j...           
            Tag 195: len 4
                02 23 23 23                                      .###            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 3c fc ff                                ...<..          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 57
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20 10 58 00  ....I...7*.. .X.
                18 7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f  .{.@...#.H..[.+O
                03 00 01 01 01 03 00 7f c5                       .........       
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 53
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Type: 0x1058: len 24
                    7b 95 40 c8 9d e7 23 8a 48 c3 cf 5b 1f 2b 4f 03  {.@...#.H..[.+O.
                    00 01 01 01 03 00 7f c5                          ........        
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5500 (0x0000157c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389898335 (0x000000f8c100185f)
        Signal mBm: -4300
> Result: New Scan Results (0x22) len 472 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 440
        BSSID 0C:08:B4:26:C7:56
        TSF: 0 (0x0000000000000000)
        IEs: len 341
            SSID: DIRECTV_WVB_6E9D96DF
                44 49 52 45 43 54 56 5f 57 56 42 5f 36 45 39 44  DIRECTV_WVB_6E9D
                39 36 44 46                                      96DF            
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 30 48 60 6c                          ...$0H`l        
            DSSS parameter set: channel 108
                6c                                               l               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00110000 
                01 02 00 0c                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 84 01 18 88 01 18 8c 01 18  .l..p...........
                90 01 18 95 01 1e 99 01 1e 9d 01 1e a1 01 1e 00  ................
            BSS load:  2 station(s) utilization 29/255 available capacity 65535 32µs/s units
                02 00 1d ff ff                                   .....           
            RM Enabled Capabilities: len 5
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                00 00 00 00 00                                   .....           
            Power constraint:  0 dB
                00                                               .               
            Tag 195: len 5
                02 18 18 18 00                                   .....           
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                Supported MCS: MCS 33
                Supported MCS: MCS 34
                Supported MCS: MCS 35
                Supported MCS: MCS 36
                Supported MCS: MCS 37
                Supported MCS: MCS 38
                Supported MCS: MCS 39
                Supported MCS: MCS 40
                Supported MCS: MCS 41
                Supported MCS: MCS 42
                Supported MCS: MCS 43
                Supported MCS: MCS 44
                Supported MCS: MCS 45
                Supported MCS: MCS 46
                Supported MCS: MCS 47
                Supported MCS: MCS 48
                Supported MCS: MCS 49
                Supported MCS: MCS 50
                Supported MCS: MCS 51
                Supported MCS: MCS 52
                Supported MCS: MCS 53
                Supported MCS: MCS 54
                Supported MCS: MCS 55
                Supported MCS: MCS 56
                Supported MCS: MCS 57
                Supported MCS: MCS 58
                Supported MCS: MCS 59
                Supported MCS: MCS 60
                Supported MCS: MCS 61
                Supported MCS: MCS 62
                Supported MCS: MCS 63
                Supported MCS: MCS 64
                Supported MCS: MCS 65
                Supported MCS: MCS 66
                Supported MCS: MCS 67
                Supported MCS: MCS 68
                Supported MCS: MCS 69
                Supported MCS: MCS 70
                Supported MCS: MCS 71
                Supported MCS: MCS 72
                Supported MCS: MCS 73
                Supported MCS: MCS 74
                Supported MCS: MCS 75
                Supported MCS: MCS 76
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6f 00 17 ff ff ff ff fe ff ff ff ff 1f 00 00 01  o...............
                00 00 00 00 00 18 e6 e7 19 00                    ..........      
            HT Operation:
                Primary channel 108
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                6c 05 05 00 00 00 00 00 00 00 00 00 00 00 00 00  l...............
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8a 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 22: +HTC-VHT Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                32 78 c3 3f aa ff 00 00 aa ff 00 00              2x.?........    
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 106
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 6a 00 fc ff                                   .j...           
            Vendor specific: len 30
                OUI: 00:26:86 type:01
                00 26 86 01 03 00 dd 00 00 00 25 04 08 92 00 06  .&........%.....
                01 9b 5b eb 98 73 00 00 00 00 00 00 00 00        ..[..s........  
            Vendor specific: len 6
                OUI: 00:26:86 type:17
                00 26 86 17 00 00                                .&....          
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 08 02 00 00 00 40                          .......@        
            Vendor specific: len 34
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20 10 49 00 06 00 26 86 00  ...7*.. .I...&..
                01 01                                            ..              
            WSC Payload: len 30
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
                Vendor Extension: OUI: 0x00 0x26 0x86: len 6
                    00 01 01                                         ...             
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5540 (0x000015a4)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389911512 (0x000000f8c1004bd8)
        Signal mBm: -7100
> Result: New Scan Results (0x22) len 372 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 340
        BSSID C0:89:AB:BC:03:B0
        TSF: 0 (0x0000000000000000)
        IEs: len 244
            SSID: ATTBUimK8s
                41 54 54 42 55 69 6d 4b 38 73                    ATTBUimK8s      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 7
                07                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 26 dB link margin  0 dB
                1a 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  3 station(s) utilization 44/255 available capacity 0 32µs/s units
                03 00 2c 00 00                                   ..,..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 1f ff ff ff 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 7
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                Information: bit 12: OBSS non-HT STAs present
                07 08 15 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 9
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                04 00 08 00 00 00 00 c0 01                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c 92 59 82 0f ea ff 00 00 ea  ..L.....Y.......
                ff 00 20 c0 05 00 07 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 03 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2442 (0x0000098a)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389479742 (0x000000f8c0f9b53e)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 384 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 352
        BSSID F8:9B:6E:F4:42:14
        TSF: 0 (0x0000000000000000)
        IEs: len 254
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 18.0 24.0 36.0 54.0 Mbit/s
                82 84 8b 96 24 30 48 6c                          ....$0Hl        
            DSSS parameter set: channel 1
                01                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 9.0 12.0 48.0 Mbit/s
                0c 12 18 60                                      ...`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  1 station(s) utilization 65/255 available capacity 0 32µs/s units
                01 00 41 00 00                                   ..A..           
            Current Operating Class: 12
            Supported Operating Class: 12
            Supported Operating Class: 32
            Supported Operating Class: 33
                0c 0c 20 21                                      .. !            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 1
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: bit  3: RIFS permitted
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                01 08 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 8
                Capability: bit  2: Extended channel switching
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                04 00 08 80 01 00 00 40                          .......@        
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 18 bf 0c 92 69 8b 0f aa ff 00 00 aa  ..L.....i.......
                ff 00 20 c0 05 00 01 00 00 00                    .. .......      
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 01 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1297 (0x0511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 2412 (0x0000096c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389583909 (0x000000f8c0fb4c25)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 460 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:2C:30:48
        TSF: 0 (0x0000000000000000)
        IEs: len 330
            SSID: 2WIRE811
                32 57 49 52 45 38 31 31                          2WIRE811        
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 20 dB link margin  0 dB
                14 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 37/255 available capacity 0 32µs/s units
                02 00 25 00 00                                   ..%..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 36
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                24 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  $...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b1 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2c 2c 2c                                      .,,,            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 0f 43 95 18 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 06 fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5180 (0x0000143c)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389636930 (0x000000f8c0fc1b42)
        Signal mBm: -8000
> Result: New Scan Results (0x22) len 460 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 428
        BSSID F8:9B:6E:F4:42:18
        TSF: 0 (0x0000000000000000)
        IEs: len 331
            SSID: Nachowifi
                4e 61 63 68 6f 77 69 66 69                       Nachowifi       
            Supported rates:
                6.0(B) 9.0 12.0 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 18 24 b0 48 60 6c                          ...$.H`l        
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  4 max tx power 30 dBm
                First channel  52 number of channels  4 max tx power 24 dBm
                First channel 100 number of channels 12 max tx power 24 dBm
                First channel 149 number of channels  5 max tx power 30 dBm
                55 53 20 24 04 1e 34 04 18 64 0c 18 95 05 1e 00  US $..4..d......
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 17 dB link margin  0 dB
                11 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                RSN capabilities: bit  7: Management Frame Protection Capable
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 8c 00                                      ....            
            BSS load:  2 station(s) utilization 71/255 available capacity 0 32µs/s units
                02 00 47 00 00                                   ..G..           
            Current Operating Class: 128
            Supported Operating Class: 1
            Supported Operating Class: 2
            Supported Operating Class: 22
            Supported Operating Class: 23
            Supported Operating Class: 27
            Supported Operating Class: 28
            Supported Operating Class: 128
            Supported Operating Class: 129
                80 01 02 16 17 1b 1c 80 81                       .........       
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 01 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 40
                Information: Secondary Channel Offset: below primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                28 07 04 00 00 00 00 00 00 00 00 00 00 00 00 00  (...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit  7: Event
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                Capability: bit 32: QoS Map
                Capability: bit 62: Opmode Notification
                Capability: bit 63: (null)
                84 00 08 80 01 00 00 c0 01 40                    .........@      
            Interworking: len 1
                Network Type: Private network
                Internet: 0
                ASRA: 0
                ESR: 0
                UESA: 0
                00                                               .               
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 69 8b 0f aa ff 00 00 aa ff 00 20              .i.........     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                    Basic VHT-MCS 2 Streams: MCS 0-7 supported
                    Basic VHT-MCS 3 Streams: MCS 0-7 supported
                    Basic VHT-MCS 4 Streams: MCS 0-7 supported
                    Basic VHT-MCS 5 Streams: MCS 0-7 supported
                    Basic VHT-MCS 6 Streams: MCS 0-7 supported
                    Basic VHT-MCS 7 Streams: MCS 0-7 supported
                    Basic VHT-MCS 8 Streams: MCS 0-7 supported
                01 2a 00 00 00                                   .*...           
            Tag 195: len 4
                02 2f 2f 2f                                      .///            
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                HE supported channel width set: bit  5: 242-tone RUs (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                05 00 18 12 00 10 44 20 02 c0 02 43 95 00 00 cc  ......D ...C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                04 00 01 0a fc ff                                ......          
            Tag 295: len 1
                10                                               .               
            Tag 294: len 13
                04 00 a4 08 20 a4 08 40 43 08 60 32 08           .... ..@C.`2.   
            Vendor specific: len 29
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c  .P...J....D....<
                00 01 03 10 49 00 06 00 37 2a 00 01 20           ....I...7*..    
            Vendor specific: len 5
                Epigram (00:90:4c) type: 04
                00 90 4c 04 17                                   ..L..           
            Vendor specific: len 9
                Broadcom (00:10:18) type: 02
                00 10 18 02 02 00 1c 00 00                       .........       
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            WSC Payload: len 25
                Version: 10
                WSC State: Configured
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 273 (0x0111)
            ESS
            Privacy
            SpectrumMgmt
        Frequency: 5200 (0x00001450)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389671409 (0x000000f8c0fca1f1)
        Signal mBm: -8600
> Result: New Scan Results (0x22) len 524 [multi]                    865.452329
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 492
        BSSID 2C:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 395
            SSID: SpectrumSetup-AC
                53 70 65 63 74 72 75 6d 53 65 74 75 70 2d 41 43  SpectrumSetup-AC
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                04 00 0f 02 00 00 00 40 00 40                    .......@.@      
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 8e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389746044 (0x000000f8c0fdc57c)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 556 [multi]                    865.452607
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 524
        BSSID 0E:EA:DC:D6:F4:AB
        TSF: 0 (0x0000000000000000)
        IEs: len 425
            SSID: Spectrum Mobile
                53 70 65 63 74 72 75 6d 20 4d 6f 62 69 6c 65     Spectrum Mobile 
            Supported rates:
                6.0(B) 9.0 12.0(B) 18.0 24.0(B) 36.0 48.0 54.0 Mbit/s
                8c 12 98 24 b0 48 60 6c                          ...$.H`l        
            DSSS parameter set: channel 44
                2c                                               ,               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 02 00 00                                      ....            
            Country: US 
                First channel  36 number of channels  1 max tx power 30 dBm
                First channel  40 number of channels  1 max tx power 30 dBm
                First channel  44 number of channels  1 max tx power 30 dBm
                First channel  48 number of channels  1 max tx power 30 dBm
                First channel  52 number of channels  1 max tx power 24 dBm
                First channel  56 number of channels  1 max tx power 24 dBm
                First channel  60 number of channels  1 max tx power 24 dBm
                First channel  64 number of channels  1 max tx power 24 dBm
                First channel 100 number of channels  1 max tx power 24 dBm
                First channel 104 number of channels  1 max tx power 24 dBm
                First channel 108 number of channels  1 max tx power 24 dBm
                First channel 112 number of channels  1 max tx power 24 dBm
                First channel 116 number of channels  1 max tx power 24 dBm
                First channel 120 number of channels  1 max tx power 24 dBm
                First channel 124 number of channels  1 max tx power 24 dBm
                First channel 128 number of channels  1 max tx power 24 dBm
                First channel 132 number of channels  1 max tx power 24 dBm
                First channel 136 number of channels  1 max tx power 24 dBm
                First channel 140 number of channels  1 max tx power 24 dBm
                First channel 144 number of channels  1 max tx power 24 dBm
                First channel 149 number of channels  1 max tx power 30 dBm
                First channel 153 number of channels  1 max tx power 30 dBm
                First channel 157 number of channels  1 max tx power 30 dBm
                First channel 161 number of channels  1 max tx power 30 dBm
                First channel 165 number of channels  1 max tx power 30 dBm
                55 53 20 24 01 1e 28 01 1e 2c 01 1e 30 01 1e 34  US $..(..,..0..4
                01 18 38 01 18 3c 01 18 40 01 18 64 01 18 68 01  ..8..<..@..d..h.
                18 6c 01 18 70 01 18 74 01 18 78 01 18 7c 01 18  .l..p..t..x..|..
                80 01 18 84 01 18 88 01 18 8c 01 18 90 01 18 95  ................
                01 1e 99 01 1e 9d 01 1e a1 01 1e a5 01 1e        ..............  
            Power constraint:  3 dB
                03                                               .               
            TPC report: transmit power 24 dB link margin  0 dB
                18 00                                            ..              
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    IEEE 802.1X/PMKSA; RSNA/PMKSA caching (00:0f:ac) suite  01
                RSN capabilities: bits  2 - 3: 16 replay counters per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 01 0c 00                                      ....            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 12: LCI Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 d0 00 00 0c                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 09 03 ff ff ff ff 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 44
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                2c 05 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ,...............
                00 00 00 00 00 00                                ......          
            Extended Capabilities: len 10
                Capability: bit  2: Extended channel switching
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 31: Interworking
                Capability: bit 46: WNM- Notification
                Capability: bit 62: Opmode Notification
                04 00 0f 82 00 40 00 40 00 40                    .....@.@.@      
            Interworking: len 7
                1f 50 6f 9a 00 11 22                             .Po..."         
            Advertisement Protocol: len 2
                Protocol: ANQP, Query Resp Limit: 127
                7f 00                                            ..              
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 12: SU Beamformee Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                    RxVHT-MCS 3 Streams: MCS 0-9 supported
                    RxVHT-MCS 4 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                    TxVHT-MCS 3 Streams: MCS 0-9 supported
                    TxVHT-MCS 4 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                VHT Extended NSS BW Capable
                b2 f9 8b 33 aa ff 00 00 aa ff 00 20              ...3.......     
            VHT Operation:
                Channel Width 1 - 80 Mhz
                Channel Center Frequency 1: 42
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                01 2a 00 fc ff                                   .*...           
            Tag 195: len 5
                03 3c 3c 3c 3c                                   .<<<<           
            HE Capabilities: len 34
                HE supported channel width set: bit  1: 40MHz/80MHz supported (5GHz/6GHz)
                    Rx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Rx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 1 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 2 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 3 Streams: MCS 0-11 supported
                    Tx HE-MCS Map <= 80MHz 4 Streams: MCS 0-11 supported
                0d 01 08 9a 40 10 04 60 48 88 1f 43 81 1c 01 08  ....@..`H..C....
                00 aa ff aa ff 7b 1c c7 71 1c c7 71 1c c7 71 1c  .....{..q..q..q.
                c7 71                                            .q              
            Tag 292: len 6
                f4 3f 00 3a fc ff                                .?.:..          
            Tag 295: len 1
                03                                               .               
            Tag 294: len 13
                0e 03 a4 ff 27 a4 ff 42 43 ff 62 32 ff           ....'..BC.b2.   
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 16
                50 6f 9a 16 65 01 41                             Po..e.A         
            Vendor specific: len 23
                OUI: 8c:fd:f0 type:01
                8c fd f0 01 01 02 01 00 02 01 01 03 03 01 01 00  ................
                04 01 01 09 02 00 00                             .......         
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 0e 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 22
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 00 00 49 4c 51 03 02 09 72 01 00 00  ......ILQ...r...
                00 00 fe ff 00 00                                ......          
            Vendor specific: len 7
                OUI: 8c:fd:f0 type:04
                8c fd f0 04 01 01 00                             .......         
            Vendor specific: len 7
                Wi-Fi Alliance (50:6f:9a) type: 10
                    HS2.0 Indication Element:
                        DGAF Disabled: 1
                        PPS MO ID Present: 0
                        ANQP Domain ID Present: 1
                        Version Number: 3.x
                        ANQP Domain ID: 00 00
                50 6f 9a 10 25 00 00                             Po..%..         
        Beacon Interval: 100 (0x0064)
        Capability: 5393 (0x1511)
            ESS
            Privacy
            SpectrumMgmt
            ShortSlotTime
        Frequency: 5220 (0x00001464)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389756304 (0x000000f8c0fded90)
        Signal mBm: -8800
> Result: New Scan Results (0x22) len 336 [multi]                    865.452607
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 304
        BSSID 2E:3B:F3:3E:10:CD
        TSF: 0 (0x0000000000000000)
        IEs: len 206
            SSID: 
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 10
                0a                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            RM Enabled Capabilities: len 5
                Enabled: bit  0: Link Measurement
                Enabled: bit  1: Neighbor Report
                Enabled: bit  4: Beacon Passive Measurement
                Enabled: bit  5: Beacon Active Measurement
                Enabled: bit  6: Beacon Table Measurement
                Enabled: bit 14: Transmit Stream / Category Measurement
                Enabled: bit 15: Triggered Transmit Stream / Category Measurement
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                73 c0 00 00 00                                   s....           
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 8 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ac 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 10
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: Nonmember protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0a 00 05 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 62: Opmode Notification
                01 00 0f 00 00 00 00 40                          .......@        
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 30
                OUI: 00:1d:0f type:10
                00 1d 0f 10 01 07 00 00 1c 3b f3 3e 10 cd 1c 3b  .........;.>...;
                f3 3e 10 cd da 5c 00 00 10 cd 00 01 00 00        .>...\........  
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
        Beacon Interval: 100 (0x0064)
        Capability: 5169 (0x1431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2457 (0x00000999)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389503128 (0x000000f8c0fa1098)
        Signal mBm: -7400
> Result: New Scan Results (0x22) len 440 [multi]                    865.452607
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 408
        BSSID AC:B6:87:AB:70:1B
        TSF: 0 (0x0000000000000000)
        IEs: len 311
            SSID: Verizon_KVQ47T
                56 65 72 69 7a 6f 6e 5f 4b 56 51 34 37 54        Verizon_KVQ47T  
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     2 beacon frame(s)
                DTIM period    3 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                02 03 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            Power constraint:  0 dB
                00                                               .               
            TPC report: transmit power 22 dB link margin  0 dB
                16 00                                            ..              
            RM Enabled Capabilities: len 5
                Enabled: bit  1: Neighbor Report
                Enabled: bit 16: AP Channel Report
                Operating Channel Max Measurement Duration: 0
                Non-Operating Channel Max Measurement Duration: 0
                Measurement Pilot Capability: 0
                02 00 01 00 00                                   .....           
            Tag 51: len 8
                54 05 06 07 08 09 0a 0b                          T.......        
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 bc 32 9e 00 1d d8 11 b2 86 01 ac b6 87 ab  ...2............
                70 1a 10 3c 00 01 03 10 49 00 06 00 37 2a 00 01  p..<....I...7*..
                20                                                               
            BSS load:  2 station(s) utilization 117/255 available capacity 31250 32µs/s units
                02 00 75 12 7a                                   ..u.z           
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 16
                Supported MCS: MCS 17
                Supported MCS: MCS 18
                Supported MCS: MCS 19
                Supported MCS: MCS 20
                Supported MCS: MCS 21
                Supported MCS: MCS 22
                Supported MCS: MCS 23
                Supported MCS: MCS 24
                Supported MCS: MCS 25
                Supported MCS: MCS 26
                Supported MCS: MCS 27
                Supported MCS: MCS 28
                Supported MCS: MCS 29
                Supported MCS: MCS 30
                Supported MCS: MCS 31
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ef 19 17 ff ff ff ff 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: 20 MHz protection mode
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 11
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 19: BSS transition
                Capability: bit 31: Interworking
                01 00 08 80 00 00 00 00 00 00 00                 ...........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 7
                OUI: 00:0c:43 type:03
                00 0c 43 03 00 00 00                             ..C....         
            Vendor specific: len 33
                OUI: 00:0c:e7 type:00
                00 0c e7 00 00 00 00 bf 0c b1 01 c0 33 2a ff 92  ............3*..
                04 2a ff 92 04 c0 05 00 00 00 2a ff c3 03 01 02  .*........*.....
                02                                               .               
            FILS Indication: len 2
                Num Public Key Identifiers: 0
                Num Realm Identifiers: 0
                IP configuration: 0
                Cache Identifier Included: 0
                HES-SID Included: 0
                SK Auth without PFS supported: 0
                SK Auth with PFS supported: 0
                PK Auth supported: 0
                00 00                                            ..              
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: bc329e00-1dd8-11b2-8601-acb687ab701a
                RF Bands:  2.4 GHz, 5 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 7185 (0x1c11)
            ESS
            Privacy
            ShortSlotTime
            APSD
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389527190 (0x000000f8c0fa6e96)
        Signal mBm: -7800
> Result: New Scan Results (0x22) len 304 [multi]                    865.452607
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 272
        BSSID AC:F1:08:CB:9C:D8
        TSF: 0 (0x0000000000000000)
        IEs: len 176
            SSID: AT_301_WLRGL5821S_9cd8
                41 54 5f 33 30 31 5f 57 4c 52 47 4c 35 38 32 31  AT_301_WLRGL5821
                53 5f 39 63 64 38                                S_9cd8          
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bits 2-3: Static
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bits 8-9: Disabled
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 1
                A-MPDU Parameters: Minimum MPDU Start Spacing: 16 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                20 00 1d ff 00 00 00 00 00 00 00 00 00 00 00 00   ...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                0b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 83 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 14
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 20 10 44 00 01 02        .P...J.. .D...  
            Vendor specific: len 6
                OUI: 00:e0:4c type:02
                00 e0 4c 02 01 10                                ..L...          
            WSC Payload: len 10
                Version: 20
                WSC State: Configured
        Beacon Interval: 100 (0x0064)
        Capability: 49 (0x0031)
            ESS
            Privacy
            ShortPreamble
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389546617 (0x000000f8c0faba79)
        Signal mBm: -8400
> Result: New Scan Results (0x22) len 404 [multi]                    865.452607
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 372
        BSSID 44:A5:6E:58:C3:D5
        TSF: 0 (0x0000000000000000)
        IEs: len 273
            SSID: ATT4DwP79U
                41 54 54 34 44 77 50 37 39 55                    ATT4DwP79U      
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 6.0 9.0 12.0 18.0 Mbit/s
                82 84 8b 96 0c 12 18 24                          .......$        
            DSSS parameter set: channel 11
                0b                                               .               
            TIM:
                DTIM count     1 beacon frame(s)
                DTIM period    2 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                01 02 00 00                                      ....            
            Country: US 
                First channel   1 number of channels 11 max tx power 30 dBm
                55 53 20 01 0b 1e                                US ...          
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 0
                00                                               .               
            Extended supported rates:
                24.0 36.0 48.0 54.0 Mbit/s
                30 48 60 6c                                      0H`l            
            HT Capabilities: len 26
                HT Capabilities Info: bit  0: LDPC Coding Capability
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  7: Tx STBC
                HT Capabilities Info: bits 8-9: One spatial stream
                HT Capabilities Info: bit 11: Maximum A-MSDU Length
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: No restriction
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                MCS Set: bit 96: Tx MCS set defined
                HT Extended Capabilities: PCO: not supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                ad 09 03 ff ff 00 00 00 00 00 00 00 00 00 00 01  ................
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 11
                Information: Secondary Channel Offset: no secondary channel
                Information: Channel width: bit  2: 20 MHz channel width
                Information: HT Protection: bits  8 -  9: No protection
                Information: bit 10: Non-greenfield HT STAs present
                0b 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Extended Capabilities: len 8
                Capability: bit  0: 20/40 BSS coexistence management support
                Capability: bit 16: TFS
                Capability: bit 17: WNM-Sleep mode
                Capability: bit 18: TIM broadcast
                Capability: bit 19: BSS transition
                Capability: bit 25: SSID list
                Capability: bit 62: Opmode Notification
                01 00 0f 02 00 00 00 40                          .......@        
            VHT Capabilities: len 12
                VHT Capabilities Info: bit  4: RX LDPC
                VHT Capabilities Info: bit  5: Short GI for 80 Mhz
                VHT Capabilities Info: bit  7: Tx STBC
                VHT Capabilities Info: bit 11: SU Beamformer Capable
                VHT Capabilities Info: bit 19: MU Beamformer Capable
                VHT Capabilities Info: bit 28: RX Antenna Pattern Consistency
                VHT Capabilities Info: bit 29: TX Antenna Pattern Consistency
                    RxVHT-MCS 1 Streams: MCS 0-9 supported
                    RxVHT-MCS 2 Streams: MCS 0-9 supported
                Rx Highest Supported Long GI Data Rate: 0
                    TxVHT-MCS 1 Streams: MCS 0-9 supported
                    TxVHT-MCS 2 Streams: MCS 0-9 supported
                Tx Highest Supported Long GI Data Rate: 0
                b2 49 89 33 fa ff 00 00 fa ff 00 00              .I.3........    
            VHT Operation:
                Channel Width 0 - 20 or 40 Mhz channel width
                Channel Center Frequency 1: 0
                Channel Center Frequency 2: 0
                    Basic VHT-MCS 1 Streams: MCS 0-7 supported
                00 00 00 fc ff                                   .....           
            Vendor specific: len 26
                Epigram (00:90:4c) type: 04
                00 90 4c 04 08 bf 0c b2 49 89 33 fa ff 00 00 fa  ..L.....I.3.....
                ff 00 00 c0 05 00 00 00 fc ff                    ..........      
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            Vendor specific: len 9
                Atheros (00:03:7f) type: 01
                00 03 7f 01 01 00 00 ff 7f                       .........       
            Vendor specific: len 11
                OUI: 00:14:6c type:00
                00 14 6c 00 02 01 01 11 00 00 00                 ..l........     
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 49  .P...J....D....I
                00 06 00 37 2a 00 01 20                          ...7*..         
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            WSC Payload: len 20
                Version: 10
                WSC State: Configured
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1073 (0x0431)
            ESS
            Privacy
            ShortPreamble
            ShortSlotTime
        Frequency: 2462 (0x0000099e)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389569430 (0x000000f8c0fb1396)
        Signal mBm: -7900
> Result: New Scan Results (0x22) len 356 [multi]                    865.452607
    Generation: 1165 (0x0000048d)
    Interface Index: 3 (0x00000003)
    Wireless Device: 1 (0x0000000000000001)
    BSS: len 324
        BSSID 50:91:E3:57:CF:CB
        TSF: 0 (0x0000000000000000)
        IEs: len 225
            SSID: TP-Link_CFCB
                54 50 2d 4c 69 6e 6b 5f 43 46 43 42              TP-Link_CFCB    
            Supported rates:
                1.0(B) 2.0(B) 5.5(B) 11.0(B) 9.0 18.0 36.0 54.0 Mbit/s
                82 84 8b 96 12 24 48 6c                          .....$Hl        
            DSSS parameter set: channel 3
                03                                               .               
            Extended supported rates:
                6.0 12.0 24.0 48.0 Mbit/s
                0c 18 30 60                                      ..0`            
            TIM:
                DTIM count     0 this beacon frame is DTIM
                DTIM period    1 beacon frame(s)
                Group buffered 0 offset 0
                AID     1 -    8 00000000 
                00 01 00 00                                      ....            
            RSN:
                Group Data Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                Pairwise Cipher Suite: len 4
                    CCMP (00:0f:ac) suite  04
                AKM Suite: len 4
                    PSK; RSNA PSK (00:0f:ac) suite  02
                RSN capabilities: bits  2 - 3: 1 replay counter per PTKSA
                RSN capabilities: bits  4 - 5: 1 replay counter per GTKSA
                01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f  ................
                ac 02 00 00                                      ....            
            Vendor specific: len 49
                Microsoft (00:50:f2) type: 04
                00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 47  .P...J....D....G
                00 10 38 83 30 92 30 92 18 83 9c 77 50 91 e3 57  ..8.0.0....wP..W
                cf c4 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01  ...<....I...7*..
                20                                                               
            ERP Information:
                non-ERP present      0
                use protection       0
                Barker preamble mode 1
                04                                               .               
            HT Capabilities: len 26
                HT Capabilities Info: bit  1: Supported Channel Width Set
                HT Capabilities Info: bits 2-3: Disabled
                HT Capabilities Info: bit  5: Short GI for 20Mhz
                HT Capabilities Info: bit  6: Short GI for 40Mhz
                HT Capabilities Info: bits 8-9: Disabled
                HT Capabilities Info: bit 12: DSSS/CCK Mode in 40Mhz
                A-MPDU Parameters: Maximum A-MPDU Length Exponent: 3
                A-MPDU Parameters: Minimum MPDU Start Spacing: 4 us
                Supported MCS: MCS 0
                Supported MCS: MCS 1
                Supported MCS: MCS 2
                Supported MCS: MCS 3
                Supported MCS: MCS 4
                Supported MCS: MCS 5
                Supported MCS: MCS 6
                Supported MCS: MCS 7
                Supported MCS: MCS 8
                Supported MCS: MCS 9
                Supported MCS: MCS 10
                Supported MCS: MCS 11
                Supported MCS: MCS 12
                Supported MCS: MCS 13
                Supported MCS: MCS 14
                Supported MCS: MCS 15
                Supported MCS: MCS 32
                HT Extended Capabilities: PCO: supported
                HT Extended Capabilities: MCS Feedback: No feedback
                HT Extended Capabilities: +HTC: not supported
                HT Extended Capabilities: RD Responder: not supported
                6e 10 17 ff ff 00 00 01 00 00 00 00 00 00 00 00  n...............
                00 00 00 00 00 00 00 00 00 00                    ..........      
            HT Operation:
                Primary channel 3
                Information: Secondary Channel Offset: above primary channel
                Information: Channel width: bit  2: Any supported channel width
                Information: HT Protection: bits  8 -  9: No protection
                03 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
                00 00 00 00 00 00                                ......          
            Tag 74: len 14
                14 00 0a 00 2c 01 c8 00 14 00 05 00 19 00        ....,.........  
            Vendor specific: len 24
                Microsoft (00:50:f2) type: 02
                00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00  .P..........'...
                42 43 5e 00 62 32 2f 00                          BC^.b2/.        
            BSS load:  0 station(s) utilization 0/255 available capacity 31250 32µs/s units
                00 00 00 12 7a                                   ....z           
            Vendor specific: len 7
                OUI: 00:0c:43 type:00
                00 0c 43 00 00 00 00                             ..C....         
            WSC Payload: len 45
                Version: 10
                WSC State: Configured
                UUID-E: 38833092-3092-1883-9c77-5091e357cfc4
                RF Bands:  2.4 GHz
                WFA Vendor Extension: len 3
                    Version2: 2.0
        Beacon Interval: 100 (0x0064)
        Capability: 1041 (0x0411)
            ESS
            Privacy
            ShortSlotTime
        Frequency: 2422 (0x00000976)
        Freq Offset: 0 (0x00000000)
        Chan Width: 0 (0x00000000)
        Seen ms ago: 0 (0x00000000)
        Timestamp: 1068389610732 (0x000000f8c0fbb4ec)
        Signal mBm: -7800
> Complete: Get Scan (0x20) len 4 [multi]                            865.452822
    Status: 0
< Request: Get Reg (0x1f) len 0 [ack,0x300]                          868.724154
> Result: Get Reg (0x1f) len 492 [multi]                             868.724218
    Regulatory Alpha2: 00
    Regulatory Rules: len 480
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2472 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 2457 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                No ODFM
                No IR
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No IR
                Auto BW
            Frequency Start: 5170 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
            Frequency Start: 5250 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                DFS
                No IR
            Frequency Start: 5490 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No IR
            Frequency Start: 5735 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Frequency Start: 57240 MHz
            Frequency End: 63720 MHz
            Frequency Range Max BW: 2160 MHz
            Max Antenna Gain: 0 (0x00000000)
            Max EIRP: 0 (0x00000000)
            DFS CAC Time: 0 (0x00000000)
> Result: Get Reg (0x1f) len 260 [multi]                             868.724218
    Regulatory Alpha2: 99
    Regulatory Rules: len 240
        Rule 0: len 56
            Frequency Start: 2402 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Frequency Start: 2474 MHz
            Frequency End: 2494 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Frequency Start: 5140 MHz
            Frequency End: 5360 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Frequency Start: 5460 MHz
            Frequency End: 5860 MHz
            Frequency Range Max BW: 160 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2000 (0x000007d0)
            DFS CAC Time: 0 (0x00000000)
    Wiphy: 0 (0x00000000)
> Complete: Get Reg (0x1f) len 4 [multi]                             868.724272
    Status: 0

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices
  2024-01-04  2:42       ` KeithG
@ 2024-01-04 12:54         ` James Prestwood
  0 siblings, 0 replies; 8+ messages in thread
From: James Prestwood @ 2024-01-04 12:54 UTC (permalink / raw)
  To: KeithG; +Cc: iwd

Hi Keith,

On 1/3/24 6:42 PM, KeithG wrote:
> On Wed, Jan 3, 2024 at 9:01 AM James Prestwood <prestwoj@gmail.com> wrote:
>> Hi Keith,
>>
>> On 1/3/24 6:57 AM, KeithG wrote:
>>> On Wed, Jan 3, 2024 at 6:58 AM James Prestwood <prestwoj@gmail.com> wrote:
>>>> Hi Keith,
>>>>
>>>> On 1/3/24 4:56 AM, James Prestwood wrote:
>>>>> It was seen that this flag seems to cause issues when in AP mode on
>>>>> brcmfmac devices (e.g. the raspberry Pi 3). When in AP mode an a
>>>>> scan is issued clients will disconnect. After testing this behavior
>>>>> was isolated to the use of the COLOCATED_6GHZ flag.
>>>>>
>>>>> Besides working around the problem on this specific hardware the
>>>>> patch itself makes sense as a non-6GHz capable device shouldn't use
>>>>> this flag anyways.
>>>>>
>>>>> As stated in the patch comment, this isn't really a catch all
>>>>> workaround since the flag is still used for devices supporting 6GHz.
>>>>> If additional hardware exhibits this behavior we may need additional
>>>>> changes like a hardware blacklist or an explicit option to disable
>>>>> the flag.
>>>>>
>>>>> Reported-By: Keith G <ys3al35l@gmail.com>
>>>> Could you double check it still fixes the issue you were seeing on brcmfmac?
>>>>
>>>> Thanks,
>>>>
>>>> James
>>>>
>>>>> ---
>>>>>     src/scan.c | 15 ++++++++++++++-
>>>>>     1 file changed, 14 insertions(+), 1 deletion(-)
>>>>>
>>>>> diff --git a/src/scan.c b/src/scan.c
>>>>> index f48ffdef..8c6fdc08 100644
>>>>> --- a/src/scan.c
>>>>> +++ b/src/scan.c
>>>>> @@ -394,7 +394,20 @@ static struct l_genl_msg *scan_build_cmd(struct scan_context *sc,
>>>>>         if (params->ap_scan)
>>>>>                 flags |= NL80211_SCAN_FLAG_AP;
>>>>>
>>>>> -     flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
>>>>> +     /*
>>>>> +      * TODO: This flag appears to cause some undesired behavior on brcmfmac
>>>>> +      *       when the device is in AP mode, or has a secondary AP interface
>>>>> +      *       running, causing clients to disconnect when a scan is issued.
>>>>> +      *
>>>>> +      *       Only using this flag for 6GHz capable devices will limit this
>>>>> +      *       behavior to only 6GHz devices and in reality makes sense
>>>>> +      *       because a non-6GHz device shouldn't use this flag anyways. If
>>>>> +      *       more issues still are seen related to this we may need an
>>>>> +      *       explicit workaround, either brcmfmac-specific or a disable
>>>>> +      *       option.
>>>>> +      */
>>>>> +     if (wiphy_band_is_disabled(sc->wiphy, BAND_FREQ_6_GHZ) != -ENOTSUP)
>>>>> +             flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
>>>>>
>>>>>         if (flags)
>>>>>                 l_genl_msg_append_attr(msg, NL80211_ATTR_SCAN_FLAGS, 4, &flags);
>>> James,
>>>
>>> I will do this tonight. I was playing a lot with iwd that I had
>>> patched with your suggestion last night. I was trying to resolve a
>>> related problem and I did note that it was significantly more stable
>>> with this patch, but I was still getting disconnected periodically. I
>>> do not yet know if those disconnects were due to me or iwd and am
>>> still investigating. I will continue this investigation with this new
>>> patch applied. SHould this patch be against HEAD or can I safely patch
>>> 2.12?

So here is what I found. If I have just a single interface, AP mode, I 
can connect and scan (in AP mode) just fine without resulting in a 
disconnect. If I even create a secondary interface I can no longer 
connect what-so-ever. I see the SSID on my client (Android) device and 
try and connect but see no attempt on the AP side of things. This even 
happens if the second interface is left down, which is really odd to me. 
Could you include exactly how you're setting things up? What interfaces 
you create, etc.

Whats odd is the patch I gave you to privately simply commented out that 
flag and you said that worked, maybe spoke too soon? This patch would 
have no functional difference since the raspi doesn't support 6GHz.

Thanks,

James


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices
  2024-01-03 12:56 [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices James Prestwood
  2024-01-03 12:58 ` James Prestwood
@ 2024-01-04 18:17 ` Denis Kenzior
  2024-01-04 20:30   ` James Prestwood
  1 sibling, 1 reply; 8+ messages in thread
From: Denis Kenzior @ 2024-01-04 18:17 UTC (permalink / raw)
  To: James Prestwood, iwd; +Cc: Keith G

Hi James,

On 1/3/24 06:56, James Prestwood wrote:
> It was seen that this flag seems to cause issues when in AP mode on
> brcmfmac devices (e.g. the raspberry Pi 3). When in AP mode an a

Seriously?  Why would this flag do anything for non-6E devices?

> scan is issued clients will disconnect. After testing this behavior
> was isolated to the use of the COLOCATED_6GHZ flag.
> 
> Besides working around the problem on this specific hardware the
> patch itself makes sense as a non-6GHz capable device shouldn't use
> this flag anyways.

I guess if you're super paranoid and don't trust the kernel to do the right thing...

> 
> As stated in the patch comment, this isn't really a catch all
> workaround since the flag is still used for devices supporting 6GHz.
> If additional hardware exhibits this behavior we may need additional
> changes like a hardware blacklist or an explicit option to disable
> the flag.
> 
> Reported-By: Keith G <ys3al35l@gmail.com>
> ---
>   src/scan.c | 15 ++++++++++++++-
>   1 file changed, 14 insertions(+), 1 deletion(-)
> 
> diff --git a/src/scan.c b/src/scan.c
> index f48ffdef..8c6fdc08 100644
> --- a/src/scan.c
> +++ b/src/scan.c
> @@ -394,7 +394,20 @@ static struct l_genl_msg *scan_build_cmd(struct scan_context *sc,
>   	if (params->ap_scan)
>   		flags |= NL80211_SCAN_FLAG_AP;
>   
> -	flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
> +	/*
> +	 * TODO: This flag appears to cause some undesired behavior on brcmfmac
> +	 *       when the device is in AP mode, or has a secondary AP interface
> +	 *       running, causing clients to disconnect when a scan is issued.
> +	 *
> +	 *       Only using this flag for 6GHz capable devices will limit this
> +	 *       behavior to only 6GHz devices and in reality makes sense
> +	 *       because a non-6GHz device shouldn't use this flag anyways. If
> +	 *       more issues still are seen related to this we may need an
> +	 *       explicit workaround, either brcmfmac-specific or a disable
> +	 *       option.
> +	 */

I'd just drop this comment entirely if you still think this is needed.

> +	if (wiphy_band_is_disabled(sc->wiphy, BAND_FREQ_6_GHZ) != -ENOTSUP)
> +		flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
>   
>   	if (flags)
>   		l_genl_msg_append_attr(msg, NL80211_ATTR_SCAN_FLAGS, 4, &flags);

Regards,
-Denis

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices
  2024-01-04 18:17 ` Denis Kenzior
@ 2024-01-04 20:30   ` James Prestwood
  0 siblings, 0 replies; 8+ messages in thread
From: James Prestwood @ 2024-01-04 20:30 UTC (permalink / raw)
  To: Denis Kenzior, iwd; +Cc: Keith G

Hi Denis,

On 1/4/24 10:17 AM, Denis Kenzior wrote:
> Hi James,
>
> On 1/3/24 06:56, James Prestwood wrote:
>> It was seen that this flag seems to cause issues when in AP mode on
>> brcmfmac devices (e.g. the raspberry Pi 3). When in AP mode an a
>
> Seriously?  Why would this flag do anything for non-6E devices?

No idea, I haven't had time, or the desire really to actually check the 
driver. But it was night and day in my testing. With the flag enabled a 
scan on the station interface would immediately disconnect all clients. 
Without the flag things were stable.

We can definitely hold off here, Keith is still doing some testing. Its 
not critical to anything I'm doing so I'd rather be sure it actually 
fixes the problem.

>
>> scan is issued clients will disconnect. After testing this behavior
>> was isolated to the use of the COLOCATED_6GHZ flag.
>>
>> Besides working around the problem on this specific hardware the
>> patch itself makes sense as a non-6GHz capable device shouldn't use
>> this flag anyways.
>
> I guess if you're super paranoid and don't trust the kernel to do the 
> right thing...
>
>>
>> As stated in the patch comment, this isn't really a catch all
>> workaround since the flag is still used for devices supporting 6GHz.
>> If additional hardware exhibits this behavior we may need additional
>> changes like a hardware blacklist or an explicit option to disable
>> the flag.
>>
>> Reported-By: Keith G <ys3al35l@gmail.com>
>> ---
>>   src/scan.c | 15 ++++++++++++++-
>>   1 file changed, 14 insertions(+), 1 deletion(-)
>>
>> diff --git a/src/scan.c b/src/scan.c
>> index f48ffdef..8c6fdc08 100644
>> --- a/src/scan.c
>> +++ b/src/scan.c
>> @@ -394,7 +394,20 @@ static struct l_genl_msg *scan_build_cmd(struct 
>> scan_context *sc,
>>       if (params->ap_scan)
>>           flags |= NL80211_SCAN_FLAG_AP;
>>   -    flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
>> +    /*
>> +     * TODO: This flag appears to cause some undesired behavior on 
>> brcmfmac
>> +     *       when the device is in AP mode, or has a secondary AP 
>> interface
>> +     *       running, causing clients to disconnect when a scan is 
>> issued.
>> +     *
>> +     *       Only using this flag for 6GHz capable devices will 
>> limit this
>> +     *       behavior to only 6GHz devices and in reality makes sense
>> +     *       because a non-6GHz device shouldn't use this flag 
>> anyways. If
>> +     *       more issues still are seen related to this we may need an
>> +     *       explicit workaround, either brcmfmac-specific or a disable
>> +     *       option.
>> +     */
>
> I'd just drop this comment entirely if you still think this is needed.
>
>> +    if (wiphy_band_is_disabled(sc->wiphy, BAND_FREQ_6_GHZ) != -ENOTSUP)
>> +        flags |= NL80211_SCAN_FLAG_COLOCATED_6GHZ;
>>         if (flags)
>>           l_genl_msg_append_attr(msg, NL80211_ATTR_SCAN_FLAGS, 4, 
>> &flags);
>
> Regards,
> -Denis

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-01-04 20:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-03 12:56 [PATCH] scan: limit COLOCATED_6GHZ flag to 6ghz devices James Prestwood
2024-01-03 12:58 ` James Prestwood
2024-01-03 14:57   ` KeithG
2024-01-03 15:01     ` James Prestwood
2024-01-04  2:42       ` KeithG
2024-01-04 12:54         ` James Prestwood
2024-01-04 18:17 ` Denis Kenzior
2024-01-04 20:30   ` James Prestwood

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox